en.javascript.info/1-js/2-first-steps/08-operators/2-assignment-result/task.md
Ilya Kantor 88bd9889a2 work
2016-05-26 12:43:54 +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);
```