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
- node
- flex-basis
- flex-shrink
- module wrapper function
- Object.create
- select by attribute
- Sass
- JS
- Node.js
- express-handlebars
- just-one-small-sip
- img 확대
- close together
- improve-iq-by-up-to-10%!
- css 오버레이
- es6
- flexbox
- 정규표현식
- css variables
- flex-grow
- 디자인패턴
- shit-christmas
- Express
- regExp
- css
- css grid
- 무료 백엔드 배포
- Prototype
- ajax
- Engoo
Archives
- Today
- Total
목록try-catch (1)
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("에러가 발생과 무관하게..
2021 프론트 엔드 로드맵 따라가기/JS
2021. 6. 12. 12:36