+=, -=, *=, /=, %=, //=, ||=, &=, |=, &&=, and
**= can be used to create extended assignment instructions.
An extended assignment combines a non-prefix operator with
an assignment where the term on the left side of the assignment
is also used as the left term of the operator. For
example, a += 1
a = a + 1