JavaScript Table of Content PDF
JavaScript Table of Content PDF
Section 2. Destructuring
Class – introduce you to the ES6 class syntax and how to declare a class.
Getters and Setters – define the getters and setters for a class using the get and set
keywords.
Class Expression – learn an alternative way to define a new class using a class
expression.
Static methods – guide you on how to define methods associated with a class, not
instances of that class.
Static Properties – show you how to define static properties shared by all instances of a
class.
Computed property – explain the computed property and its practical application.
Inheritance – show you how to extend a class using the extends and super keywords.
new.target – introduce you to the new.target metaproperty.
Section 6. Promises
Promises – learn about Javascript Promises, what they are, and how to use them
effectively.
Promise chaining – show you how to execute multiple asynchronous operations in
sequence.
Promise composition: Promise.all() & Promise.race() – learn how to compose a
new promise out of several promises.
Promise error handling – guide you on how to handle errors in promises.
Async – learn about Javascript Async, what they are, and how to use them
effectively.
await – show you how to execute multiple asynchronous operations in sequence.