async function
↔ JS Keyword to Declare function with Asynchronous Code to return Promise
& allow await
inside
[`!snippet async fn
async function f(){
return 1;
}
f().then(alert);
shows what?`](snippet-async-fnshows-what)
1