en.javascript.info/1-js/2-first-steps/09-operators/2-assignment-result/task.md
Ilya Kantor 3dc3018fd1 works
2016-07-02 18:11:36 +03:00

14 lines
144 B
Markdown

importance: 3
---
# Assignment result
What will be values of `a` and `x` in the example below?
```js
let a = 2;
let x = 1 + (a *= 2);
```