0 votes
in JavaScript by
How to write a comment in JavaScript?

1 Answer

0 votes
by

here are two types of comments in JavaScript.

  1. Single Line Comment: It is represented by // (double forward slash)
  2. Multi-Line Comment: Slash represents it with asterisk symbol as /* write comment here */
...