Reference Guide: Constructors
Constructors are fundamental to Object-Oriented Programming (OOP). Without them, we would have to manually assign properties to each object we create.
Golden Rule 1
There can only be one method called constructor in a class.
Golden Rule 2
If you don't define a constructor, JS automatically adds one empty.