async myFn() {
// code
// oops, I forgot to await:
doThing()
// more code
// fails at runtime because doThing()
// hasn't finished yet.
}
async myFn() {
// code
// oops, I forgot to await:
doThing()
// more code
// fails at runtime because doThing()
// hasn't finished yet.
}