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,11 +4,10 @@ importance: 3
# Assignment result
What will be values of `a` and `x` in the example below?
What are the values of `a` and `x` after the code below?
```js
let a = 2;
let x = 1 + (a *= 2);
```