Semicolons

An ActionScript statement is terminated with a semicolon (;), as shown in these examples:

var column = passedDate.getDay();
var row    = 0;

If you omit the terminating semicolon, Flash still compiles your script successfully. However, using semicolons is good scripting practice.