async function wait(i, time = 1000) { return new Promise((resolve, reject) => { setTimeout(v => resolve(i), time); }) } //pure await (async ...
確定! 回上一頁