 |
JavaScript While Loop





The while loop is used to execute a set of statements repeatedly until a condition
becomes false.Unlike the for loop there is no counter maintained.When the condition
becomes false the control is transferred to the statement following the while
statement. The syntax for the +while loop is :
while(condition){
set of statements
}
Domain Name Search
|