Async await improves how we handle asynchronous code. It is built on top of ES6 Promises and aims to give a cleaner and more concise syntax.
With ECMAScript 2015 (ES6) Modules become finally native to modern Browsers. In this article I will explain how you can use them in your projects.
The Rest Paramameter collects all the remaining elements into an array. It is a sibling of the Spread Operator and uses the same syntax of three dots “…”.
ES6 brings us a better version of object literals. We will write less code to reach the same result.