MCQ
What will be the value of x after executing let x = 5; x += 3; ?
Explanation
x += 3 adds 3 to the current value, so x becomes 5 + 3 = 8.