Which of the below statements are used to comment a line in JavaScript file?
Answer options
A
True
B
False
Correct answer: True
Explanation
JavaScript supports two comment syntaxes: // for single-line comments and /* ... */ for multi-line block comments. Both are valid for commenting code.