First solution in Clear category for Is Even by suic
function isEven(num: number): boolean { return num % 2 === 0; }
Aug. 9, 2020
Comments: