➕division (/)
JS ⟩ operator ⟩ arithmetic ⟩ division (/)
/ operator
👉 table of operators
(all numbers are floating-point) all division have floating-point results. (
5/2 === 2.5
)division by zero yields ±infinity (no error)❗
0/0 evaluates to NaN (no error)❗
💡neither of these cases raises an error❗
Last updated