mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-05-05 14:28:31 +00:00
Merge pull request #974 from qw3rtman/add-semicolon
[Javascript/en] Add semicolon to maximine consistency.
This commit is contained in:
commit
0c146eb2ed
@ -207,7 +207,7 @@ while (true){
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Do-while loops are like while loops, except they always run at least once.
|
// Do-while loops are like while loops, except they always run at least once.
|
||||||
var input
|
var input;
|
||||||
do {
|
do {
|
||||||
input = getInput();
|
input = getInput();
|
||||||
} while (!isValid(input))
|
} while (!isValid(input))
|
||||||
|
Loading…
Reference in New Issue
Block a user