fork download
  1. // 実行する関数
  2. const sampleFunc = (value) => {
  3. // asyncの効果は各functionブロックで切れるので逐一指定が必要
  4. return new Promise(resolve => {
  5. // 2秒待ってから計算結果をresolveする
  6. setTimeout(() => {
  7. console.log('Calculating...');
  8. resolve(value * 2);
  9. }, value*1000);
  10. })
  11. }
  12.  
  13. // 対象の反復オブジェクト
  14. const targetArr = [6, 4, 2].map(sampleFunc);
  15.  
  16. // for await...of文は必ずasyncの中で
  17. (async () => {
  18. for await (num of targetArr) {
  19. // 関数の実行結果を格納して表示
  20. console.log(num);
  21. }
  22. })();
Success #stdin #stdout 0.09s 31672KB
stdin
Standard input is empty
stdout
Calculating...
Calculating...
Calculating...
12
8
4