Assignment Operators
Operator
Sample expression
Meaning
-=
x-= 4
x = x - 4
+=
x+= 4
x = x + 4
*=
x*= 4
x = x * 4
/=
x/= 4
x = x / 4
%=
x%= 4
x = x % 4
For more details, please contact me
here
.
Date of last modification: March 26, 2019.