그림3-17 resolve( ) 호출 시 then( ) 실행, reject( ) 호출 시 catch( ) 실행
reject()를 호출했는데 catch() 메서드를 붙이지 않으면 에러가 발생합니다.
const p2 = new Promise((resolve, reject) => {
reject('error');
}); // Uncaught (in promise) error
그림3-17 resolve( ) 호출 시 then( ) 실행, reject( ) 호출 시 catch( ) 실행
reject()를 호출했는데 catch() 메서드를 붙이지 않으면 에러가 발생합니다.
const p2 = new Promise((resolve, reject) => {
reject('error');
}); // Uncaught (in promise) error