Create Objects
Objects are usually created by using the New keyword followed by an object constructor function. For example:
See new.
The constructor is a special function you create that assigns default property values. You can also create an object using the default object constructor Object. For example:
See Object.
Once you create an object, you can assign values to its properties as follows:
See Work with Objects.