how to make a comment section in javascript code example
Example 1: how to comment in javascript
/* this is a javascript comment
that is multi lines */
// This is a single line comment
Example 2: comment out in javascript
<script type="text/javascript">
<!--
document.write("I have multi-line comments!");
/*document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");*/
//-->
</script>
Example 3: comment in JavaScript
// This is how you comment a single line in JavaScript
/*
This is how you comment
multiple lines in
JavaScript
*/
Example 4: comment out in javascript
<script type="text/javascript">
<!--
// This is a single line JavaScript comment
document.write("I have comments in my JavaScript code!");
//document.write("You can't see this!");
//-->
</script>