What is a Constructor Function?
A Constructor Function is a regular JavaScript function used with the new keyword to create and initialize multiple objects with the same structure.
It acts like a blueprint for creating objects.
By convention, constructor function names start with a capital letter.
Syntax







