Arithmetic Operators « Language « Flash / Flex / ActionScript






1.Arithmetic Operators in Actionscript
2.Assignment Operators
3.myVariable += 6; is the shorthand version of the following: myVariable = myVariable + 6;
4.myVariable *= 6; is the same as: myVariable = myVariable * 6;
5.Using Mathematical Operators: prefix and postfix
6.Modulo (%)
7.Increment (++) and Decrement ( -- )
8.Compound Assignment Operators (+=, -=, *=, /=, and %=): x += 1; is the same as writing x = x + 1;