Login
Remember
Register
Ask a Question
How to write a comment in JavaScript?
0
votes
asked
Jun 8, 2022
in
JavaScript
by
sharadyadav1986
How to write a comment in JavaScript?
javascrript-comment
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 8, 2022
by
sharadyadav1986
here are two types of comments in JavaScript.
Single Line Comment: It is represented by // (double forward slash)
Multi-Line Comment: Slash represents it with asterisk symbol as /* write comment here */
...