freeCodeCamp/guide/english/certifications/javascript-algorithms-and-d.../basic-javascript/iterate-with-javascript-whi.../index.md

37 lines
517 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Iterate with JavaScript While Loops
---
## Iterate with JavaScript While Loops
While loops will run as long as the condition inside the ( ) is true.
Example:
```javascript
while(condition){
code...
}
```
## Hint 1:
Use a iterator variable such as i in your condition
```javascript
var i = 0;
while(i <= 4){
}
```
## Spoiler Alert Solution Ahead!
## Solution:
```javascript
// Setup
var myArray = [];
// Only change code below this line.
var i = 0;
while (i <= 4){
myArray.push(i);
i++;
}
```