til #troubleshooting1 241210 TIL - Promise.all, 터미널기본명령어, UTF, 트러블슈팅 Promise 기본구조 복습 (베이직반 염탐)const openBox = new Promise((resolve, reject) => { setTimeout(() => { const success = Math.random() > 0.5; if (success) { resolve("성공"); } else { reject("실패"); } }, 2000); // 2초 후에 결과 공개});// 보물 상자 열기 실행openBox .then((message) => { console.log(message); // "성공" }) .catch((error) => { console.log(error); // "실패" });상자를 2초 뒤에 여는데, 50% 확률로 성공하거나 실패함. op.. 2024. 12. 10. 이전 1 다음