JavaScript Comments
JavaScript comments can be used to explain JavaScript code, and to make it more readable.
JavaScript comments can also be used to prevent execution, when testing alternative code.
Single Line Comments
Single line comments start with //.
Any text between // and the end of the line, will be ignored by JavaScript (will not be executed).
This example uses a single line comment before each line, to explain the code:
// Change heading: |
This example uses a single line comment at the end of each line, to explain the code:
Example
var x = 5; // Declare x, give it the value of 5 |
Multi-line Comments
Multi-line comments start with /* and end with */.
Any text between /* and */ will be ignored by JavaScript.
This example uses a multi-line comment (a comment block) to explain the code:
Example
/* |
Using Comments to Prevent Execution
Using comments to prevent execution of code, is suitable for code testing.
Adding // in front of a code line changes the code lines from an executable line to a comment.
This example uses // to prevent execution of one of the code lines:
<script> <p><strong>Note:</strong> The comment is not executed.</p> |
'JavaScript' 카테고리의 다른 글
[08] JavaScript Operators (0) | 2015.07.13 |
---|---|
[07] JavaScript Variables (0) | 2015.07.13 |
[05] JavaScript Statements (0) | 2015.07.13 |
[04] JavaScript Syntax (0) | 2015.07.13 |
[03] JavaScript Output (0) | 2015.07.13 |