A class name is the name of the constructor. | |
A constructor 'acts as' a factory function. | |
No object is created inside the constructor. | |
this keyword is used in constructor. | |
When a constructor is called with the new operator, an object is created before the first line of the constructor. | |
Constructors create a separate copy for each object. | |
|