Can you guys first RTFM? It is in the standard
https://html.spec.whatwg.org/multipage/webappapis.html#event-loops
async function write(s){
console.log(s)
}
async function a(){
await write("1")
await write("2")
}
async function f3(){
await a()
await a()
console.log("f")
}