Check if the given number is even Check whether a number is odd or even using the modulo (%) operator. Return true if the number is even, false if the number is odd. const isEven = num => num % 2 === 0; // Example isEven(3); // false Source https://www.30secondsofcode.org/js/s/is-even