// promise-based code Promise.resolve('hello world').then((asyncMsg) => { console.log(msg); }); // async/await code const asyncMsg = await ...
確定! 回上一頁