Home » JavaScript OOPs Constructor Method

JavaScript OOPs Constructor Method

by Online Tutorials Library

JavaScript Constructor Method

A JavaScript constructor method is a special type of method which is used to initialize and create an object. It is called when memory is allocated for an object.

Points to remember

  • The constructor keyword is used to declare a constructor method.
  • The class can contain one constructor method only.
  • JavaScript allows us to use parent class constructor through super keyword.

Constructor Method Example

Let’s see a simple example of a constructor method.

Test it Now

Output:

101 Martin Roy  

Constructor Method Example: super keyword

The super keyword is used to call the parent class constructor. Let’s see an example.

Test it Now

Output:

1 John tutoraspire  

Note – If we didn’t specify any constructor method, JavaScript use default constructor method.

Next TopicJS static Method

You may also like