Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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
