Write a function that determines if a given number is odd. Follow up was to do it without using %, /, *, etc.
Anonymous
function isEven (val) { val = String(val); return ['0', '2', '4', '6', '8'].includes(val[val.length -1]); }
Check out your Company Bowl for anonymous work chats.