[프로그래머스] 숫자 비교하기

리빗·2023년 10월 19일
0
post-custom-banner

📌 내 풀이

1. if 문을 활용한 풀이

function solution(num1, num2) {
    var answer = 0;
  
    if(num1 === num2){
        answer = 1;
    }else{
        answer = -1;
    }
    return answer;
}

📌 다른 풀이

1. 삼항 연산자를 활용한 풀이

return num1 === num2 ? 1 : -1;

참고자료

profile
어제보다 나은 오늘을 위해

0개의 댓글