중첩 if 문

오주형·2022년 8월 24일
0

isEitherEvenAndLessThan9

Assignment

isEitherEvenAndLessThan9 함수를 작성하세요.

  • 함수의 인자로 숫자 두개가 주어졌을때 함수는 2가지 조건을 검사합니다.
  • 우선 두 숫자 중 적어도 하나가 짝수인지 확인합니다.
  • 그리고 두 숫자 모두 9보다 작은지를 확인합니다.
  • 두 조건을 모두 만족하는 경우만 true를 반환합니다.
/// 출력
let output = isEitherEvenAndLessThan9(2, 4);
console.log(output); // --> true

let output = isEitherEvenAndLessThan9(72, 2);
console.log(output); // --> false
function isEitherEvenAndLessThan9(num1, num2) {
  if (num1 % 2 === 0 || num2 % 2 === 0) {
    if (num1 < 9 && num2 < 9) {
      return true;
    } else {
      return false;
    }
  } else {
    return false;
  }
}

✔︎ 외부 if문에 상응하는 else 가 있어야 한다.

profile
곧 개발자

0개의 댓글