April 2018
Beginner
536 pages
13h 21m
English
We can use the new operator to generate an instance of Person:
const person = new Person("remote", "Jansen");
When we use the new operator, the runtime creates a new object that inherits from the Person class prototype.