The subtraction operator subtracts the RHS value from the LHS value to produce the numerical difference It is an error if either operand is not a number.It can also be used in its unary form to negate a numberExample
The modulo operator divides the RHS into the LHS using whole number division to produce a whole number quotient and a remainder. This operator returns the remainder. It is an error if either operand is not a number.Example
The sequence generation operator is used to create an array of monotonically increasing integer start with the number on the LHS and ending with the number on the RHS. It is an error if either operand does not evaluate to an integer. The sequence generator can only be used within an array constructor [].Example