const isEven = n => { if (n != parseInt(n)) return undefined; return n % 2 ? false : true; };
Loading collection data...