console.clear();
Array.prototype.asyncForEach = async function(callback) {
  for(let i = 0; i < this.length; i++) {
    await callback(this[i], i, this);
  }
}

var arr1 = [1, 3, 5, 7, 9];
var arr2 = [2, 4, 6, 8, 10];

function ajax(status, data, max) {
  return new Promise((resolve, reject) => {
    const time = Math.floor(Math.random() * max);
    setTimeout(() => {
      if(status) {
        resolve(`成功:${data}`);
      } else {
        reject(`失敗:${data}`);
      }
    }, time);
  })
}

async function fn() {
  await arr1.asyncForEach(async (item) => {
    await ajax(true, item, 10).then((res) => {
      console.log(res);
    })
  });
  await arr2.asyncForEach(async (item) => {
    await ajax(true, item, 10).then((res) => {
      console.log(res);
    })
  });
}
fn();

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.