"/" function:
- Can also be called as
nas_divide
Divide the firs argument by the second argument if both are strings as numbers. If the second argument is "0" will return nothing
Examples:
- running:
("/" "100", "25")will give:"4"
- running:
("/" "7", "2")will give:"3.5"
- running:
("/" "1e900", "5e899")will give:"2"
- running:
("/" "7", [])will return nothing
- running:
("/" {}, "5")will return nothing
- running:
("/" "7", "0")will return nothing