Saved Bookmarks
| 1. |
What is while loop? |
|
Answer» In Java Script while loop is another most basic loop. The purpose of a while loop is to execute a statement /block of statement repeatedly as long as an expression is true. The syntax is: while (condition) { body of the loop } |
|