간단한 JS 질문으로 새해를 시작합니다.
const getData = () => Promise.resolve("OK")
try {
getData().then(data => {
if(data === "OK") {
throw new Error("I am an error")
}
})
} catch(err) {
console.log("I caught an error here:", err)
}
너는 무슨 일이 발생할 것이라고 생각하니?console.log
문장을 실행하시겠습니까?왜?우리는 어떻게 코드를 재구성해서 그로 하여금 예상한 대로 일하게 합니까?
내 유튜브 채널에서 솔루션 보기!
Reference
이 문제에 관하여(간단한 JS 질문으로 새해를 시작합니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/davidarmendariz/starting-the-year-with-a-simple-js-question-3n8n텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)