en.javascript.info/1-js/2-first-steps/07-operators/2-assignment-result/task.md
2016-07-20 17:28:12 +03:00

144 B

importance: 3


Assignment result

What will be values of a and x in the example below?

let a = 2;

let x = 1 + (a *= 2);