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: 5
# The postfix and prefix forms
What are the final values of all variables in the code below?
What are the final values of all variables `a`, `b`, `c` and `d` after the code below?
```js
let a = 1, b = 1;
@ -12,4 +12,3 @@ let a = 1, b = 1;
let c = ++a; // ?
let d = b++; // ?
```