Numerical Operator Shortcuts
var x = 10;
x = x + 3; // increment x by 3
x = x - 4; // decrease x by 4
x = x * 2 // multiply x by 2
x = x / 5 //divide x by 5
///The shortcut syntax for the above
x += 3;
x -= 4;
x *= 2;
x /= 5;Last updated