How to write comments in JavaScript and when?
It depends on what type of comment you want to write: single-line or multi-line. For single-line, you can try this:
// I am a comment For multi-line: /* I am a multi-line comment */
Check out this tutorial, for additional info.