What is a default constructor in JavaScript?



If a constructor method is not added, then a default constructor should be used. A default constructor is created when nothing is defined.

Syntax

Here’s the syntax −

constructor() {}

The syntax for derived class −

constructor(...args) {
   super(...args);
}

Advertisements