Divide function
The Divide function returns the decimal quotient of the first parameter divided by all subsequent parameters.
Parameter: number1
The number to be divided (dividend). This can be a source node, the result of another function, or a value that you specify.
Parameter: number2, [number3-999]
The numbers to divide by (divisor). These can be source nodes, the results of other functions, or values that you specify. At least one parameter is required.
Returns: number
The result of the division operation. If the divisor is zero (positive or negative), the result is infinity (positive or negative), or NaN (not a number) if the dividend is also zero.