Search code examples
javascriptcomments

How can I write comments in JavaScript and when?


How to write comments in JavaScript and when?


Solution

  • 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.