Statements
Last updated
Was this helpful?
Was this helpful?
breakconst #;continuedo
{
}
while ( # )for ( var i = 0 ; i < # ; i++ )
{
}for ( var item in obj )
{
}if ( # )
{
}if ( # )
{
}
else
{
}var i = 0, j;
outer_loop: while (i < 10) {
i++;
j = 0;
while (j < 10) {
j++;
if (j > i) continue outer_loop;
application.output("i=" + i + ", j=" + j);
}
}switch( # )
{
case:
default:
}try
{
#
}
catch(#)
{
#
}try
{
#
}
catch(#)
{
#
} finally
{
#
}var #;while ( # )
{
#
}