Javascript

JavaScript Fetch API, Async/Await

Await is syntactic sugar for Promises and is used for avoiding the multiple promise chains. It makes asynchronous code look more like synchronous code and makes it easier for humans to understand the code. A function declared with the async keyword is called an Async Function and await function is used inside the Async function.

Continue reading

Views: 615

Standard