12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
// I am a single line comment!
|
|
|
|
let /* I am a spy in a variable declaration! */ x = 5;
|
|
|
|
/* I am a simple
|
|
multi-line
|
|
comment */
|
|
|
|
/* look /* at /* that, /* multi-line */ comments */ can be */ nested */
|
|
|
|
/* surrounded by */ let this_is_not_a_comment = true // comments
|