Logo

Programming-Idioms

History of Idiom 78 > diff from v61 to v62

Edit summary for version 62 by etienneguerlain:
[JS] Removed the underscore before the "c" character

Version 61

2017-11-05, 16:12:27

Version 62

2017-11-05, 16:13:32

Idiom #78 "do while" loop

Execute a block once, then execute it again as long as boolean condition c is true.

Idiom #78 "do while" loop

Execute a block once, then execute it again as long as boolean condition c is true.

Extra Keywords
until
Extra Keywords
until
Code
do {
   something();
} while (_c);
Code
do {
   something();
} while (c);
Doc URL
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/do...while
Doc URL
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/do...while
Origin
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/do...while
Origin
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/do...while