Changes to "Iterate with JavaScript While Loops - English" challenge description (#37683)

* Update iterate-with-javascript-while-loops.english.md

* Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-while-loops.english.md

Co-Authored-By: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
pull/37705/head
Kiara Barias 2019-11-06 13:26:44 -05:00 committed by Randell Dawson
parent a52b5b4ebb
commit 3119da3ec5
1 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,8 @@ while(i < 5) {
}
```
In the code example above, the <code>while</code> loop will execute 5 times and append the numbers 0 through 4 to <code>ourArray</code>.
Let's try getting a while loop to work by pushing values to an array.
</section>