EN
JavaScript - Comments
0 points
This article will show you how to add comments to your JavaScript code.
Quick solution:
xxxxxxxxxx
1
// one-line comment
2
// another one-line comment
3
4
/* multi
5
line
6
comment
7
*/
8
9
console.log('plain code');
Note:
Comments are ignored and not executed by the Javascript engine.