0 votes
in JavaScript by

Which symbol is used for comments in Javascript?

a) \\

b) //

c) \* *\

d) \* */

1 Answer

0 votes
by
Answer:-  B

Reason: Single line comments start with //.

Any text between // and the end of the line will be ignored by JavaScript
...