![]() ![]() | |
Flash Player 4. In Flash 4 files, the % operator is expanded in the SWF file as x - int(x/y) * y, and may not be as fast or as accurate in later versions of Flash Player.
expression1%expression2
None.
Nothing.
Operator (arithmetic); calculates the remainder of expression1 divided by expression2. If either of the expression parameters are non-numeric, the modulo operator attempts to convert them to numbers. The expression can be a number or string that converts to a numeric value.
The following is a numeric example that uses the modulo (%) operator.
trace (12 % 5);// returns2trace (4.3 % 2.1); // returnsapproximately 0.1
![]() ![]() | |