javascript syntax commenting 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: javascript comment
// For single line comment
/* For block of lines comment
...
...
*/