Scripter Javascript Tutorial
javascriptmusiclogicscripterbookexcerpttutorial8 Multi-line Comments
Multi-line comments are wrapped in /*
and
*/
and line breaks are ignored.
/*
An example showing how to assign and use a variable.
Scripts are usually way more complex.
*/
var say_hi = "Hello, world!";
// Trace(say_hi);
In the above example, lines 1–4 are the multi-line comment and line 6 will not execute.