promiseChanining1 Promise ; 주문할 때 쓰는 const f1=(callback) => { setTimeout(function() { console.log("1번주문 완료"); callback(); }, 2000); }; const f2=(callback) => { setTimeout(function() { console.log("2번주문 완료"); callback(); },2000); }; const f3=(callback)=> { setTimeout(function() { console.log("3번주문 완료"); callback(); }, 2000); }; console.log('시작') f1(function() { f2(function() { f3(function() { console.log("끝") }); }); }); ===> 콜백 지옥에.. 2022. 10. 2. 이전 1 다음