multi line comment in javascriopt code example
Example 1: js comment
//This does not effect the code.
var something = "But this does effect the code!";
Example 2: comment in JavaScript
// This is how you comment a single line in JavaScript
/*
This is how you comment
multiple lines in
JavaScript
*/