JSFiddle - React, Tailwind, and code Playground
HTML
<h2>F12 打开控制台查看结果</h2>
Babel + JSX
async function async1() {
console.log('async start');
await console.log('await console');
console.log('in end')
}
async1();
console.log('out');
<h2>F12 打开控制台查看结果</h2>
async function async1() {
console.log('async start');
await console.log('await console');
console.log('in end')
}
async1();
console.log('out');