mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-09 16:26:53 +02:00
Fixed ) {
vs ){
inconsistency
This commit is contained in:
@@ -175,14 +175,14 @@ myObj.myFourthKey; // = undefined
|
|||||||
var count = 1;
|
var count = 1;
|
||||||
if (count == 3){
|
if (count == 3){
|
||||||
// evaluated if count is 3
|
// evaluated if count is 3
|
||||||
} else if (count == 4) {
|
} else if (count == 4){
|
||||||
// evaluated if count is 4
|
// evaluated if count is 4
|
||||||
} else {
|
} else {
|
||||||
// evaluated if it's not either 3 or 4
|
// evaluated if it's not either 3 or 4
|
||||||
}
|
}
|
||||||
|
|
||||||
// As does while.
|
// As does while.
|
||||||
while (true) {
|
while (true){
|
||||||
// An infinite loop!
|
// An infinite loop!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user