Hi everyone! I'm the author of code.mu :)
I'd love to chat with my non-Russian audience. I'm looking for your feedback on the site and the translation quality. Let's chat:)
5 of 264 menu

while statement

The while construct sets a loop. A code placed inside it will be repeated a certain number of times.

Syntax

while ( while an expression is true ) { execute this code };

Example

Let's output numbers from 1 to 10:

let i = 1; while (i <= 10) { console.log(i); i++; }

Example

Let's output even numbers from 2 to 10:

let i = 2; while (i <= 10) { console.log(i); i += 2; }

See also

English
AfrikaansAzərbaycanБългарскиবাংলাБеларускаяČeštinaDanskDeutschΕλληνικάEspañolEestiSuomiFrançaisहिन्दीMagyarՀայերենIndonesiaItaliano日本語ქართულიҚазақ한국어КыргызчаLietuviųLatviešuМакедонскиMelayuမြန်မာNederlandsNorskPolskiPortuguêsRomânăРусскийසිංහලSlovenčinaSlovenščinaShqipСрпскиSrpskiSvenskaKiswahiliТоҷикӣไทยTürkmenTürkçeЎзбекOʻzbekTiếng Việt
We use cookies for website operation, analytics, and personalization. Data processing is carried out in accordance with the Privacy Policy.
accept all customize decline