function asyncFoo(n) { return new Promise(resolve => { setTimeout(() => { resolve(n * Math.random()); // 完成約定 }, 2000); }); } asyncFoo(10) .then(r1 ...
確定! 回上一頁