Pilcrow Records

Scripter Javascript Tutorial

javascriptmusiclogicscripterbookexcerpttutorial

8 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.