13.7 Multiplicative Operators
Syntax
- The
*
operator performs multiplication, producing the product of its operands. - The
/
operator performs division, producing the quotient of its operands. - The
%
operator yields the remainder of its operands from an implied division.
13.7.1 Runtime Semantics: Evaluation
- Let opText be the source text matched by
MultiplicativeOperator . - Return ?
EvaluateStringOrNumericBinaryExpression (MultiplicativeExpression , opText,ExponentiationExpression ).