function solution(num) { if(num % 2 === 0){ return "Even"; } else { return "Odd"; } }
너무 쉬워서 설명을 생략..