async function firstAsync() { let promise = new Promise((res, rej) => { setTimeout(() => res("Now it's done!"), 1000) }); // wait until the ...
確定! 回上一頁