const a = () => { console.log("a 시작"); b(); console.log("a 끝"); }; const b = async () => { console.log("b 시작"); await c(); console.log("b 끝"); }; const c = async () => { console.log("c 시작"); await d(); console.log("c 끝"); }; const d = () => { console.log("d") }; a();


출력결과 적으면 됨.