JavaScript comments can be used to make the code more readable.
Comments can be added to explain the JavaScript, or to make the code more readable.
Single line comments start with //.
The Below example uses single line comments to explain the code:
Multi line comments start with /* and end with */.
The Below example uses a multi line comment to explain the code:
In the following example the comment is used to prevent the execution of a single code line (can be suitable for debugging):
In the following example the comment is used to prevent the execution of a code block (can be suitable for debugging):
In the following example the comment is placed at the end of a code line:
Your Query was successfully sent!