[프로그래머스 level1] 짝수와 홀수

김예지·2021년 10월 8일
0

문제

https://programmers.co.kr/learn/courses/30/lessons/12937


문제 풀이

function solution(num) {
    return (num%2)? "Odd" : "Even";
}
profile
내가 짱이다 😎 매일 조금씩 성장하기🌱

1개의 댓글

comment-user-thumbnail
2021년 10월 25일

10/25

답글 달기