8 lines
82 B
JavaScript
8 lines
82 B
JavaScript
switch(x) {
|
|
case 1:
|
|
console.log('1')
|
|
// comment
|
|
default:
|
|
break;
|
|
}
|