Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Saw this on Twitter:
Instead of using i+=1 to increment variables you can do i-=-1 which looks way cooler*
* please don't do this
I just do step # on fuze on for loops (like you would in basic). I do use += to increment variables outside of for loops.
Ex: score+=150 rather than score=score+150
Now if we are taking c++ ill just stick to i++