how to comment in javascript code example
Example 1: javascript comment
//This is a javascript single line comment
Example 2: comment in javascript
// single line comment
Example 3: how to comment in javascript
// This is a single line comment
Example 4: comment out in javascript
<script type="text/javascript">
<!--
document.write("I have multi-line comments!");
//-->
</script>
Example 5: js comment
//This does not effect the code.
var something = "But this does effect the code!";
Example 6: comment in JavaScript
// This is how you comment a single line in JavaScript