en.javascript.info/1-js/02-first-steps/08-operators/2-assignment-result/task.md

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);