4 lines
205 B
Text
4 lines
205 B
Text
continue; continue(n); // continue nth nested loop
|
|
break; break(n); // break out of nth nested loop
|
|
try{ ... }catch(exception){ ... } [else{ ... }]
|
|
onExit(fcn); // run fcn when enclosing function exits
|