전후 캐치 위치 퍼팅의 차이를 이해하는 데 어려움이 있습니다..catch그 전과 후는 중첩된 약속입니다. 대안 1: test1Async(10).then((res) => { return test2Async(22) .then((res) => { return test3Async(100); }).catch((err) => { throw "ERROR AFTER THEN"; }); }).then((res) => { console.log(res); }).catch((err) => { console.log(err); }); 대안 2: test1Async(10).then((res) => { return test2Async(22) .catch((err) => { throw "ERROR BEFORE THEN"; }) .th..