Fixed Typo Line 64 (#19705)

Replaced '/' with '.'
This commit is contained in:
Michael Wright
2018-10-21 04:02:11 +01:00
committed by Tom
parent 86bf84264e
commit 3d54986c7f

View File

@ -61,7 +61,7 @@ _Hint:_ There is a handy <a href='https://developer.mozilla.org/en-US/docs/Web/J
**Usage** **Usage**
3 / 2 // returns 1.5 3 / 2 // returns 1.5
3.0 / 2/0 // returns 1.5 3.0 / 2.0 // returns 1.5
3 / 0 // returns Infinity 3 / 0 // returns Infinity
3.0 / 0.0 // returns Infinity 3.0 / 0.0 // returns Infinity
-3 / 0 // returns -Infinity -3 / 0 // returns -Infinity