본문 바로가기
node JS

try catch

by 혀닙 2022. 3. 7.

try catch문

  • try문 실행에서 오류가 발생할 시, catch문 실행
try{
    console.log(`hello`)
} catch (err) {
    console.log(err)
}

 

  • 간단히 에러 메세지만 확인하려면, catch문 안에 아래의 코드를 작성하여 message 속성값을 확인하면 된다
console.log(err.message)

 

 

  • 중요한 점은, try catch문의 경우 콜백함수 내부에 작성해야 한다는 점.

 

'node JS' 카테고리의 다른 글

노드몬  (0) 2022.03.03

댓글