{div:style=display:none}
DO NOT EDIT THE CONTENT OF THIS PAGE DIRECTLY (EXCEPT INSIDE THE DIV BELOW WITH ID=DESCRIPTION), UNLESS YOU KNOW WHAT YOU'RE DOING.
		THE STRUCTURE OF THE CONTENT IS VITAL IN BEING ABLE TO AUTO UPDATE THE CONTENT THROUGH THE DOC GENERATOR.\\		\\		Enter additional information related to this 'class' inside the \{div} macro with 'id=description'{div}
{div:id=description}{div}\\ 

{table:id=|class=servoy sSummary}{colgroup}{column:width=80px|padding=0px}{column}{column}{column}{colgroup}{tr:style=height: 30px;}{th:colspan=2}Method Summary{th}{tr}{tbody}{tr}{td}void{td}{td}[#break]\()
Break statement exits a loop.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#const]\()
Constant declaration.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#continue]\()
Continue statement, jumps to next iteration of the loop.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#do while]\()
do while loop{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#for]\()
for loop{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#for each in]\()
foreach loop{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#if]\()
If statement{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#if else]\()
If/Else statement.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#label]\()
Provides a statement with an identifier that you can refer to using a break or continue statement.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#switch]\()
Switch statement.{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#try catch]\()
try/catch statement{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#try catch finally]\()
try/catch/finally statement{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#var]\()
Variable declaration{td}{tr}{tbody}{tbody}{tr}{td}void{td}{td}[#while]\()
while loop{td}{tr}{tbody}{table}\\ 

{table:id=function|class=servoy sDetail}{colgroup}{column:width=100%|padding=0px}{column}{colgroup}{tr:style=height: 30px;}{th:colspan=1}Method Details{th}{tr}{tbody:id=break}{tr:id=name}{td}h6.break{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}break{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}Break statement exits a loop.{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
break
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=const}{tr:id=name}{td}h6.const{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}const{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}Constant declaration.{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
const #;
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=continue}{tr:id=name}{td}h6.continue{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}continue{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}Continue statement, jumps to next iteration of the loop.{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
continue
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=do while}{tr:id=name}{td}h6.do while{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}do while{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}do while loop{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
do
{
}
while ( # )
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=for}{tr:id=name}{td}h6.for{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}for{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}for loop{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
for ( var i = 0 ; i < # ; i++ )
{
}
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=for each in}{tr:id=name}{td}h6.for each in{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}for each in{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}foreach loop{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
for ( var item in obj )
{
}
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=if}{tr:id=name}{td}h6.if{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}if{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}If statement{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
if ( # )
{
}
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=if else}{tr:id=name}{td}h6.if else{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}if else{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}If/Else statement.{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
if ( # )
{
}
else
{
}
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=label}{tr:id=name}{td}h6.label{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}label{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}Provides a statement with an identifier that you can refer to using a break or continue statement.

For example, you can use a label to identify a loop, and then use the break or continue statements to indicate 
whether a program should interrupt the loop or continue its execution.{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
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);
	}
}
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=switch}{tr:id=name}{td}h6.switch{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}switch{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}Switch statement.{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
switch( # )
{
case:
default:
}
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=try catch}{tr:id=name}{td}h6.try catch{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}try catch{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}try/catch statement{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
try 
{
	#
}
 catch(#) 
{
	#
}
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=try catch finally}{tr:id=name}{td}h6.try catch finally{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}try catch finally{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}try/catch/finally statement{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
try 
{
	#
}
 catch(#) 
{
	#
} finally 
{
	#
}
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=var}{tr:id=name}{td}h6.var{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}var{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}Variable declaration{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
var #;
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=while}{tr:id=name}{td}h6.while{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}void{span}{span:style=font-weight: bold;}while{span}{span}\(){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}while loop{div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}void{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
while ( # )
{
	#
}
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{table}