comment ut javascript code example
Example 1: js comment
//This does not effect the code.
var something = "But this does effect the code!";
Example 2: comments in js
// comment sigle line
//This does not effect the code.
var something = "But this does effect the code!";
// comment sigle line