javascript wait in async function code example
Example 1: javascript async delay
const delay = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
(async () => {
console.log('1');
await delay(1000);
console.log('2');
})();
Example 2: async
function resolveAfter2Seconds() {
return new Promise(resolve => {
setTimeout(() => {
resolve('resolved');
}, 2000);
});
}
async function asyncCall() {
console.log('calling');
const result = await resolveAfter2Seconds();
console.log(result);
}
asyncCall();