In this JavaScript lesson, we look at, Practice Creating Object Literals in JavaScript, Codecademy Learn JavaScript, How to Create Objects. This lesson is from Codecademy's Learn JavaScript course. We are in the Objects section, this lesson is, "Creating Object Literals". In it, we learn how to create a JavaScript object. We learn that objects are made up of key-value pairs. We learn that the key can be seen as a variable. The key points to a specific location in memory that holds a value. We will learn more about how to access data in our objects in later lessons, but the key point of this lesson is understanding how an object is created, and that it is comprised of key-value pairs. As long as you get that so far, the next lessons should help make more sense of JavaScript objects. Make sure to practice creating your own objects to truly see how they can work. Practice creating objects in JavaScript to master programming like never before. Make sure to practice JavaScript objects in order to understand how objects work in JavaScript. Understanding that objects are enclosed in curly braces {} is vital. Also, our key is like our identifier and is followed by a colon and then our value. Values can be any data type, this is including functions and other objects as well. We will learn how to access object data in JavaScript in the next lessons!