If the '++' operator adds one to a variable in JavaScript coding, does '+++' add two?
Updated
No. The '++' operator is a shortcut for x+=1—being x a variable in your coding. If you'd like a variable to increase by any number different from 1, you should do something like this: x+=n, being n any number you'd like to add to your variable.