1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| async function foo() {}
const foo = async function () {};
let obj = { async foo() {} }; obj.foo().then(...)
class Storage { constructor() { this.cachePromise = caches.open('avatars'); }
async getAvatar(name) { const cache = await this.cachePromise; return cache.match(`/avatars/${name}.jpg`); } }
const storage = new Storage(); storage.getAvatar('jake').then(…);
const foo = async () => {};
|