https://school.programmers.co.kr/learn/courses/30/lessons/120841
function solution(dot) {
if(dot[0] > 0 && dot[1] > 0){
return 1;
}
if(dot[0] < 0 && dot[1] > 0){
return 2;
}
if(dot[0] < 0 && dot[1] < 0){
return 3;
}
if(dot[0] > 0 && dot[1] < 0){
return 4;
}
}
단순한 문제다. switch 문을 쓰면 코드가 깔끔해지니까, 변경은 알아서 하는 걸로..