async/await in javascript
1. async keyword
async is a keyword which can be used before of a function definition.
async function sayHi() {
return "Hello There"
}
The word async means one thing: the function that uses it always returns a promise. Other values other then prom...
blog.furkanozbek.com2 min read