6 ms·
You are right that you can only await in an async function, but you can call an async function anywhere and get back a Promise. await-ing that promise is often
by shauns 5y ago
You are right that you can only await in an async function, but you can call an async function anywhere and get back a Promise.
await-ing that promise is often what you want to do but there are other ways to do work once the promise has resolved.