Language Reference/ Operator


Description
Used to divide two numbers and return a numeric result.

Syntax
result = number1 / number2

The / operator syntax has these parts:

Part Description
result Any numeric variable.
number1 Any numeric expression.
number2 Any numeric expression.

Remarks

As for all arithmetic operators, JScript will generate runtime errors for every case in the table below where an E is indicated:

 objasnsnumboolundefnull
objNENNNEE
asEEEEEEE
nsNENNNEE
numNENNNEE
boolNENNNEE
undefEEEEEEE
nullEEEEEEE

obj = Object, as = Alphanumeric String, ns = Numeric String, num = Number, bool = Boolean, undef = Undefined, null = Null value.