() (parentheses)

SWiSH Player Support
SWF4 or later - Supported Internally

Syntax
(expression1, expression2)
and
function(argument1, ..., argument N )

Arguments
None.

Returns
None.

Description
Forces a precedence of evaluation and groups arguments and expressions together.

Sample
(x +  3 ) *  5 // this changes standard precedence so that addition is done before multiplication .

call MyFunction(a,b,c)  // groups arguments to be passed to the function MyFunction().