Execution start from top to bottom
While:
Do While:
15. Example programs While and do while Loop condition checking
< script type = " text / javascript " >
var i=0;
while (i<0) { document.write("first check condition but condition is false"); } < / script >
16 . Do while condition checking
< script type = " text / javascript " >
var i=0;
do
{
document.write("condition is false but executing one time");
}
while ( i < 0); < / script >
No comments:
Post a Comment