6-1:async:返回值是promise对象
6-2:await: 相当于执行promise的then方法
await 阻塞了代码的执行流程 会先执行await后面同步的代码,异步代码等待同步代码执行完毕之后再去执行
<br />
async function show(){
console.log("sratr");
await mid();
console.log("end");
}
async function mid(){
console.log("show");
}
show();
console.log("a1");
sratr
show
a1
end