JavaScript Comments

« Previous Chapter 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 Below example uses single line comments to explain the code:

Example

<script type="text/javascript">
// Write a heading
document.write("<h1>A heading</h1>");
// Write two paragraphs:
document.write("<p>A paragraph.</p>");
document.write("<p>This is another paragraph.</p>");
</script>
Code it Online »


JavaScript Multi-Line Comments

Multi line comments start with /* and end with */.

The Below example uses a multi line comment to explain the code:

Example

<script type="text/javascript">
/!!
The code below will write
one heading and two paragraphs
*/
document.write("<h1>A heading</h1>");
document.write("<p>A paragraph.</p>");
document.write("<p>This is another paragraph.</p>");
</script>
Code it Online »


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

<script type="text/javascript">
//document.write("<h1>A heading</h1>");
document.write("<p>A paragraph.</p>");
document.write("<p>This is another paragraph.</p>");
</script>
Code it Online »

In the following example the comment is used to prevent the execution of a code block (can be suitable for debugging):

Example

<script type="text/javascript">
/!!
document.write("<h1>A heading</h1>");
document.write("<p>A paragraph.</p>");
document.write("<p>This is another paragraph.</p>");
*/
</script>
Code it Online »


Using Comments at the End of a Line

In the following example the comment is placed at the end of a code line:

Example

<script type="text/javascript">
document.write("NewFile."); // Write "NewFile."
document.write(" Dolly!"); // Write " Dolly!"
</script>

« Previous Chapter Next Chapter »

Have Any Suggestion? We Are Waiting To Hear from YOU!

Your Query was successfully sent!