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);
}

Updated on: 12-Jun-2020

641 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements