Definition:

"An object is a value type consisting of key/value pairs inside curly braces. The keys are also known as properties. Everything in JavaScript that isn’t a primitive is an object."

"A set of key-value pairs. Each key is a string that can be paired with any JavaScript value. You can then use the key to retrieve whatever value it's within in the object."

"Objects in JavaScript are very similar to arrays, but objects use strings instead of numbers to access the different elements. The strings are called keys or properties, and the elements they point to are called values. Together these pieces of information are called key-value pairs."

Vocabulary Change:

Object Literal Notation:

How to Access Properties on an Object: 

             var book = { title: ‘Huck Fin’, pages: 260 };
             book[‘title’]; // ‘Huck Fin’
             book[’pages’]; // 260

               var name = { firtName: ‘John’, lastName: ‘Doe’ };
               name.firstName; // ‘John’
               name.lastName; // ‘Doe’

How to Add Properties and Values on an Object: