This commit is contained in:
Ilya Kantor 2017-03-24 17:28:37 +03:00
parent c9401b3104
commit 0fcf9f84fa
58 changed files with 673 additions and 643 deletions

View file

@ -4,7 +4,7 @@ importance: 3
# Last loop value
What is be the last value alerted by this code? Why?
What is the last value alerted by this code? Why?
```js
let i = 3;
@ -13,4 +13,3 @@ while (i) {
alert( i-- );
}
```