catch
-
2023 - 06 - 14 에러핸들링 (Error Handling) try catch, throw, finallyToday I Learned/TIL 06 2023. 6. 14. 01:11
오늘 할일 5주차 강의 듣기 오늘 배운 것 에러 핸들링 에러핸들링 (1) try~catch문 : 에러가 발생했을때 예를들어, users에 있는 이름을 String.toUppercase()를 이용해 대문자로 변경할 때 문자열(String)이 아닌, 데이터 (숫자 2) 가 들어온다면 에러가 발생한다. const users = ["Lee", "Kim", "Park", 2] try { for (const user of users){ console.log(user.toUpperCase()); } } catch (err) { console.error(`Error: $(err.message)`); } // LEE // KIM // PARK // Error: user.toUpperCase is not a functio..