Objects are an important building block of JavaScript. They allow Properties and Methods to be grouped together.
An object is a collection of properties. Properties are identified using key values. They’re the same as variables except they’re assigned to an object. Methods are functions assigned to the object.
JavaScript provides a range of built-in methods that can be accessed on the global object constructor.
Learn more about using object manipulation in JavaScript.