async & await

node v8.17.0
version: 1.0.0
endpointsharetweet
async and await allow you to write async code in a sync manner. However, it's still async
async function foo() { return Promise.resolve('resolved'); } let result = await foo(); console.log(result);
Loading…

no comments

    sign in to comment