MCQ
What is the correct way to write a comment in JavaScript?
JavaScript
A <!-- comment -->
B // comment
C /* comment */
D Both b and c
Explanation

Both // for single-line and /* */ for multi-line comments are valid.