js comment part 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: js comment
//This does not effect the code.
var something = "But this does effect the code!";