* (multiplication)
Top  Previous  Next


SWiSH Player Support
SWF4 or later - Supported Internally

Syntax
expression1 * expression2

Arguments
None.

Returns
result of expression1 * expression2

Description
Operator (arithmetic); multiplies two numerical expressions. If both expressions are integers, the product is an integer. If either or both expressions are floating-point numbers, the product is a floating-point number.

Sample
The following statement multiplies the integers 4 and 3:
4
 * 3
The result is 12, which is an integer.

Sample
This statement multiplies the floating-point numbers 2.0 and 3.1416.
2.0 * 3.1416
The result is 6.2832, which is a floating-point number.