``` a = () => Promise.resolve(1) b = () => Promise.resolve(2) c = () => Promise.resolve(3) console.log( await a(),await b(),await c()) ```
阅读量:1
点赞量:11