상세 컨텐츠

본문 제목

[TestDome] Ensure (JavaScript)

PROGRAMMING/Web

by koharin 2021. 1. 9. 11:15

본문

728x90
반응형
function ensure(value) {
  // Your code goes here
  if(value === undefined)
    throw true;
  else return value;
}

try {
  console.log(ensure());
} catch(err) {
  console.log(err);
}
  • undefined: no arguments or the argument is undefined 판별에 해당
  • throw: 사용자 정의 예외상황을 던지면, 현재 함수의 실행이 중지되고 catch문으로 전달된다. catch문이 없으면 프로그램이 종료된다.
  • value가 undefined인 경우만 처리하면 33%만 Pass된다. 정상적인 경우에는 value를 리턴하도록 하면 나머지 두 체크 사항을 Pass할 수 있다.

728x90
반응형

관련글 더보기