코딩테스트
[JS] 연습문제 > 짝수와 홀수
차차한
2022. 8. 23. 15:32
function solution(num) {
return num % 2 == 0 ? "Even" : "Odd";
}
쉬어가는 문제 \^^/