Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- css 오버레이
- regExp
- css grid
- flexbox
- 정규표현식
- Object.create
- select by attribute
- express-handlebars
- 디자인패턴
- Sass
- css
- node
- flex-shrink
- just-one-small-sip
- Node.js
- flex-grow
- Express
- close together
- img 확대
- Prototype
- flex-basis
- 무료 백엔드 배포
- ajax
- improve-iq-by-up-to-10%!
- es6
- module wrapper function
- shit-christmas
- Engoo
- JS
- css variables
Archives
- Today
- Total
Error Handling in JS 본문
JS에서 에러를 처리하기 위해 try-catch 문을 이용할 수 있습니다.
try 에는 동작시킬 명령들을 입력하고, catch 에는 try에 입력된 명령어 실행 중 에러가 발생했을 때 실행될 명령들을 입력합니다.
try {
// ReferenceError 발생하도록 작성
testFunc();
} catch (e) {
console.log(e);
// 에러 메세지 출력
console.log(e.message);
// 에러 이름 출력
console.log(e.name);
// 에러 타입 확인
console.log(e instanceof ReferenceError); // true
} finally {
console.log("에러가 발생과 무관하게 동작1");
}
console.log("에러가 발생과 무관하게 동작2");
또한 throw 키워드를 이용해 본인이 직접 에러를 생성하고 발생시킬 수 있습니다.
const user = {email: "jdoe@gmail.com"};
try {
if (!user.name) {
// 내가 생성한 에러를 던짐
throw new SyntaxError("User has no name");
}
} catch (e) {
console.log(e);
}
'2021 프론트 엔드 로드맵 따라가기 > JS' 카테고리의 다른 글
Metacharacters in JS RegExp, 정규표현식에서의 특수문자 (0) | 2021.06.12 |
---|---|
Regular Expression in JS, 정규표현식 (0) | 2021.06.12 |
ES7 Async & Await (0) | 2021.06.09 |
ES6 Arrow Function (0) | 2021.06.09 |
ES6 Fetch API (0) | 2021.06.09 |
Comments