Object Literals
In addition to using an object constructor, you can create objects using an object literal. For example:
An object literal consists of a list of properties enclosed in braces. Each property consists of the property name followed by the colon character (:) and the property value.
Objects can be nested so property values can be other objects. For example:
See Work with Objects.