SWiSH Player Support
SWF4 or later - Supported Internally
Syntax
expression1 / expression2
Arguments
expression: A number or a variable that evaluates to a number.
Returns
Floating-point result of expression1 / expression2.
Description
Operator (arithmetic); divides expression1 by expression2. The result of the division operation is a double-precision floating-point number.
Sample
The following statement divides the floating-point number 22.0 by 7.0 and then displays the result in the 'Debug' window.
trace(22.0 / 7.0);
The result is 3.1429, which is a floating-point number.