const q = () => console.log(2)const w = async () => { console.log(1) await q console.log(3)}w()為什么q沒有輸出 1 2 3而是輸出 1 3
JavaScript async/await 輸出問題
楊__羊羊
2018-11-16 14:15:17