Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에서 월 인덱스를 기반으로 분기 찾기

<시간/>

문제

1부터 시작하는 월 인덱스를 가져와 해당 월이 속하는 분기를 반환하는 JavaScript 함수를 작성해야 합니다.

예시

다음은 코드입니다 -

const month = 7;
const findQuarter = (month = 1) => {
   if (month <= 3) {
      return 1
   } else if (month <= 6) {
      return 2
   } else if (month <= 9) {
      return 3
   } else if (month <= 12) {
      return 4
   }
}
console.log(findQuarter(month));

출력

다음은 콘솔 출력입니다 -

3