en.javascript.info/1-js/02-first-steps/07-operators/2-assignment-result/task.md
Ilya Kantor 0fcf9f84fa fixes
2017-03-24 17:28:37 +03:00

143 B

importance: 3


Assignment result

What are the values of a and x after the code below?

let a = 2;

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