Language documentation Contents | Index

break, Control structures


Description:
break ends execution of the current for, while, do/while or switch structure.

Example:
var i=0;

while (true) {
i++;
if (i==5)
break;
}



Documented by Eduard Suica, generation time: Thu Oct 15 20:02:09 2009 GMT(c)2009 RadGs Software