var myVar = 87;
// Only change code below this line
var myVar = 87;
myVar = ++myVar;
var myVar = 87;
// Only change code below this line
var myVar = 87;
myVar = ++myVar;
I’m not sure what you are asking, can you rephrase your question?
When using ++
or --
you don’t need the assignment operator =
.
Also double check whether you should be incrementing or decrementing the value.
var = myVar = 87;
you should not have repeated that line.