/ function:
- Can also be called as
divide
Divide the firs argument by the second argument. If the second argument is 0 will return nothing
Examples:
- running:
(/ 100, 25)will give:4
- running:
(/ 7, 2)will give:3.5
- running:
(/ 7, 0)will return nothing
- running:
(/ 7, [])will return nothing
- running:
(/ {}, 5)will return nothing