루프를위한 JavaScript ES6 약속 이 질문에 이미 답변이 있습니다. 약속을 차례로 해결합니까 (즉, 순서대로)? 23 답변 for (let i = 0; i { const timeout = Math.random() * 1000; setTimeout(() => { console.log(i); }, timeout); }); // TODO: Chain this promise to the previous one (maybe without having it running?) } 위의 내용은 다음과 같은 임의의 출력을 제공합니다. 6 9 4 8 5 1 7 2 3 0 작업은 간단합니다. 각 Promi..