Understanding Objects in JavaScript

In this article, I’d walk you through JavaScript objects, what they are, how they work, and why they’re so important. If you’ve been coding in JavaScript for a while, you’ve probably noticed that almost everything revolves around objects. So, let’s break it down!
What is an Object in JavaScript?
In JavaScript, an object is a collection of key-value pairs. Unlike primitive data types like strings or numbers, objects can store multiple values and offer flexibility in structuring data.
Creating an Object
There are a few ways to create objects in JavaScript, but here are the most common ones:
1. Using Object Literal
const person = {
name: "John",
age: 30,
isStudent: false
};
This is the easiest and most common way to create an object. The keys (name
, age
, isStudent
) are strings, and the values can be any data type.
2. Using the new Object()
Constructor
const person = new Object();
person.name = "John";
person.age = 30;
person.isStudent = false;
This works but is rarely used since the object literal syntax is shorter and cleaner.
3. Using Object.create()
const personPrototype = {
greet() {
console.log("Hello!");
}
};
const person = Object.create(personPrototype);
person.name = "John";
This creates an object that inherits from another object (prototypal inheritance), which is super useful when working with reusable properties and methods.
Accessing Object Properties
There are two main ways to access properties in an object:
Dot notation (
.
):person.name
Bracket notation (
[]
):person["name"]
Use dot notation when you know the property name in advance. Use bracket notation when the property name is dynamic or contains special characters.
console.log(person.name); // "John"
console.log(person["age"]); // 30
Modifying Objects
You can update an object’s properties, add new ones, or delete existing ones.
person.age = 31; // Update property
person.city = "NY"; // Add new property
delete person.isStudent; // Remove property
Object Methods
Objects can have functions as values, which we call methods.
const person = {
name: "John",
greet() {
console.log(`Hello, my name is ${this.name}!`);
}
};
person.greet(); // "Hello, my name is John!"
Iterating Over Objects
Sometimes, you’ll need to loop through an object’s properties. Here are a few ways to do that:
1. Using for...in
for (let key in person) {
console.log(`${key}: ${person[key]}`);
}
2. Using Object.keys()
Object.keys(person).forEach(key => {
console.log(`${key}: ${person[key]}`);
});
3. Using Object.entries()
Object.entries(person).forEach(([key, value]) => {
console.log(`${key}: ${value}`);
});
Object Destructuring
Destructuring lets you extract object properties easily.
const { name, age } = person;
console.log(name); // "John"
console.log(age); // 30
Objects and Prototypes
Every JavaScript object has a prototype, which is basically an object that the current object inherits from. This is the foundation of JavaScript’s prototypal inheritance system.
const animal = {
makeSound() {
console.log("Some generic sound");
}
};
const dog = Object.create(animal);
dog.bark = function() {
console.log("Woof!");
};
dog.makeSound(); // "Some generic sound"
dog.bark(); // "Woof!"
Conclusion
Objects are at the core of JavaScript and understanding how to create, modify, and use objects effectively will make you a better developer. I’d recommend practicing with different object techniques to get comfortable with them. Happy coding!
Subscribe to my newsletter
Read articles from Saad Khaleeq directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

Saad Khaleeq
Saad Khaleeq
Creative. Fast Learner. Super Passionate. Highly Enthusiastic.