comment vs comment out in javascript code example
Example 1: javascript comment
//This is a javascript single line comment
/*
And here is a
multiline comment
*/
Example 2: js comment
//This does not effect the code.
var something = "But this does effect the code!";