quot

functionsince v0.0-927 clojure.core/quotEdit
(quot n d)

Details:

Returns the quotient of dividing numerator n by denominator d.

Returns NaN when d is 0 (divide by 0 error).


See Also:


Source docstring:
quot[ient] of dividing numerator by denominator.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn quot
  [n d]
  (let [rem (js-mod n d)]
    (fix (/ (- n rem) d))))