If we want to in increase the value of a variable by, say, 10, we can use a shortcut.
10
Perfect! +=, -=, *=, and /= give the result of the operation back to the variable.
+=
-=
*=
/=
How much of a shortcut is that?