Files
freeCodeCamp/guide/russian/javascript/tutorials/iterate-with-javascript-while-loops/index.md
2018-10-16 21:32:40 +05:30

14 lines
498 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Iterate with JavaScript While Loops
localeTitle: Итерации с помощью JavaScript, в то время как циклы
---
Другой тип цикла JavaScript называется `while loop` потому что он работает, `while` что-то истинно, и останавливается, когда что-то перестает быть истинным.
```
var ourArray = [];
var i = 0;
while(i < 5) {
ourArray.push(i);
i++;
}
```