0
Why increment operator is not working???
Please see the code below: Also please can you answer what is operand and what is object???? https://code.sololearn.com/WeaDOJmtXcJX/?ref=app
2 ответов
+ 4
You can not increase 5, because it's a constant.
You can only change a variable.
For example:
var x = 5;
++x;
+ 1
Ok thanks