Language documentation | Contents | Index |
break ends execution of the current for, while, do/while or switch structure. |
var i=0; while (true) { i++; if (i==5) break; } |
Documented by Eduard Suica, generation time: Fri Jan 21 18:06:25 2011 GMT | (c)2011 RadGs Software |