Returns true if n is even, throws an exception if n is not an integer
Source
(defneven?"Returns true if n is even, throws an exception if n is not an integer"[n](if(integer?n)(zero?(bit-andn1))(throw(js/Error.(str"Argument must be an integer: "n)))))