JavaScript Programmer’s Reference Multiplicative expression (Definition) (Web server extensions) An expression

JavaScript Programmer’s Reference Multiplicative expression (Definition) An expression containing a multiply or divide operator. Availability: Property/method value type: ECMAScript edition 2 Number primitive Multiplicative expressions use the multiplicative operators to yield a result by operating on two other values, which may themselves be nested. See also: Divide (/), Expression, Modulo, Multiplicative operator, Remainder (%) Cross-references: ECMA 262 edition 2 section 11.5 ECMA 262 edition 3 section 11.5 Multiplicative operator (Definition) A multiply or divide operator. Availability: Property/method value type: ECMAScript edition 2 Number primitive Multiplicative operators are those that require multiplication or division to evaluate their result. The following table lists all operators that are multiplicative and those, which are classified under other categories, which are also multiplicative, by implication: Operator Description % Remainder * Multiply / Divide *= Multiply and assign to an LValue /= Divide and assign to an LValue %= Remainder and assign to an LValue Operands that are used with multiplicative operators must have numeric values or be convertible using the valueOf() method. 1468

Leave a Reply