Alan
Results
1
comments of
Alan
``` function asyncAdd(a, b) { return new Promise((res, rej) => { setTimeout(() => { res(a + b); }, Math.random() * 1000); }); } function sum() { let args = [...arguments];...