[프로그래머스 level1] 2016년

김예지·2021년 10월 13일
0

문제

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


문제 풀이

코드1

내장 메소드 Date를 사용한 코드이다.

function solution(a, b) {
    const day=['SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT'];
    const date=new Date(2016, (a-1), b);
    return day[date.getDay()];
}

코드2

2016년으로 한정되어있으니까, 월별로 몇일이 있는지 배열을 만든 다음에 풀 수 있다. 풀어보기!


참고

Date 참고: https://www.w3schools.com/jsref/jsref_obj_date.asp

profile
내가 짱이다 😎 매일 조금씩 성장하기🌱

1개의 댓글

comment-user-thumbnail
2021년 10월 26일
답글 달기