Daily question
Feedback
Choose an option below
The wrong variable is being set
The 'const' keyword is used, meaning the variable is immutable
The variable cannot be incremented as it is a string
testing
Hint
1const x = 100;2x = x + 100;3 4console.log(x);