division
Summary
Divides the values of two expressions.
Syntax
result = number1 / number2
- result
- Any numeric variable.
- number1
- Any numeric expression.
- number2
- Any numeric expression.
Examples
var x = 9 / 3;
// result: x = 3
See also
Other articles
Attributions
Microsoft Developer Network: Article