Easy
JavaScript: Why Can't I Reassign a Value to a Const Variable?
What is wrong with the following code snippet?
1const x = 100;2x = x + 100;34console.log(x);
What is wrong with the following code snippet?
1const x = 100;2x = x + 100;34console.log(x);