JavaScript Comments
« Previous | Next Chapter » |
JavaScript comments can be used to make the code more readable.
JavaScript Comments
Comments can be added to explain the JavaScript, or to make the code more readable.
Single line comments start with //.
The following example uses single line comments to explain the code:
Example
Try it yourself » |
JavaScript Multi-Line Comments
Multi line comments start with /* and end with */.
The following example uses a multi line comment to explain the code:
Example
Try it yourself » |
Using Comments to Prevent Execution
In the following example the comment is used to prevent the execution of a single code line (can be suitable for debugging):
Example
Try it yourself » |
In the following example the comment is used to prevent the execution of a code block (can be suitable for debugging):
Example
Try it yourself » |
Using Comments at the End of a Line
In the following example the comment is placed at the end of a code line:
Example
Try it yourself » |
« Previous | Next Chapter » |