Lesson6: Additional Assignment Operators
Accumulation Statement
Accumulation statement is assigning a value to a variable using this variable as a part of the equation.
Example:
Additional Assignment Operators
There is also a shortcut for accumulation statement: +=, -=, *=, /=, %=.
Here is an example on how it works:
The same rule is also applied for the other operators.
Increment and Decrement Operators
Increment Operator
This has a symbol of ++ which just means to increase the value by 1.
Decrement Operator
This has a symbol of ++ which just means to increase the value by 1.
Examples for these operators will be on the upcoming lessons.


