You create a block comment by adding /* to the first line that
you want included in the block, and you close a comment block by typing */ after the last
character in the block. Any text or lines between the opening /* characters and the closing
*/ characters are ignored by JavaScript interpreters.
A JavaScript block comment uses the same syntax as a comment in CSS, as
Note
well as in other programming languages including C++ and Java.