js comemnt code example
Example 1: js comment
//This does not effect the code.
var something = "But this does effect the code!";
Example 2: javascript comment
// For single line comment
/* For block of lines comment
...
...
*/
//This does not effect the code.
var something = "But this does effect the code!";
// For single line comment
/* For block of lines comment
...
...
*/