I am reading SICP in JS about a non-terminating example of ternary conditions:
function is_even(n) { return n % 2 === 0; } function expmod(base, exp, m)