143 B
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);
importance: 3
What are the values of a
and x
after the code below?
let a = 2;
let x = 1 + (a *= 2);