In previous post, we understood how to write JavaScript statement. In this post we shall learn how to write comment in JavaScript.
The single line comment can start with “//” (double forward slashes) and multi-line comment should be wrapped inside “/*” (forward slash and asterisk) and “*/” (asterisk and forward slash) characters.
<script>Views: 5882 | Post Order: 2
// Single line comment
/* Multiline comment
Line 1
Line 2
Line 3
*/
</script>