async用法

1
2
3
4
async fn() {}
const fn = async () => {}
const fn = async function() {}
let obj = { async fn() {} }