
With the release of Nodejs 8.10, we are now able to write
asynchronous functions by using the async/await declarations. This simplifies the use of promise chain in
our code with a much simpler syntactic style.
To understand this better, let’s take a look at how asynchronous
functions...