Skip to content

Mastering JavaScript Objects: A Comprehensive Guide

JavaScript objects are fundamental to the language, allowing you to store and organize data in key-value pairs. This guide will walk you through everything you need to know about working with objects in JavaScript, from basic operations to advanced techniques.

Creating Objects

There are several ways to create objects in JavaScript:

1. Object Literal Notation (Most Common)

const literalObj = {};

2. Object.create() Method

const singletonObj1 = Object.create(null);

3. Object Constructor

const singletonObj2 = new Object();

Creating Objects with Properties

You can create objects with properties right from the start:

const uniqueId = Symbol("uniqueIdKey");
const uniquePincode = Symbol("uniquePincodeKey");
const person = {
firstName: "Manoj",
lastName: "Nishad",
hobbies: ["Code", "Create", "Connect"],
[uniqueId]: 1234,
address: {
city: "Tundla",
[uniquePincode]: 283204,
"house number": 1432,
},
callMe: function () {
console.log("Hey, I am Manoj Nishad");
},
};

Accessing Object Properties

You can access object properties using dot notation or bracket notation:

console.log(person.firstName); // "Manoj"
console.log(person["lastName"]); // "Nishad"
console.log(person[uniqueId]); // 1234
console.log(person.address["house number"]); // 1432
person.callMe(); // "Hey, I am Manoj Nishad"

Adding and Updating Properties

You can add or update properties after object creation:

const profile = {};
profile.email = "example@gmail.com";
profile.mobile = 9149045555;
profile["House Address"] = {
city: "Firozabad",
pincode: 988998,
state: "Uttar Pradesh",
};
console.log(profile);
/*
{
email: 'example@gmail.com',
mobile: 9149045555,
'House Address': {
city: 'Firozabad',
pincode: 988998,
state: 'Uttar Pradesh'
}
}
*/

Freezing Objects

To prevent modifications to an object, you can use Object.freeze():

const facebookUser = {
username: "himanshu123",
};
Object.freeze(facebookUser);
facebookUser.username = "manojnishad123"; // This won't change the object
console.log(facebookUser.username); // Still "himanshu123"

Merging Objects

You can merge objects using Object.assign() or the spread operator:

const obj1 = { key1: 1, key2: 2 };
const obj2 = { key3: 3, key4: 4 };
const obj3 = { key1: "Object 3 ⭐", key5: "Object 3 😃" };
// Using Object.assign()
const mergedObj1 = Object.assign({}, obj1, obj2, obj3);
// Using spread operator
const mergedObj2 = { ...obj1, ...obj2, ...obj3 };
console.log(mergedObj1);
// { key1: 1, key2: 2, key3: 3, key4: 4, key5: 'Object 3 😃' }
console.log(mergedObj2);
// { key1: 1, key2: 2, key3: 3, key4: 4, key5: 'Object 3 😃' }

Spreading Arrays and Strings into Objects

You can spread arrays and strings into objects:

const spreadArrayInObject = {
...["Hi", "Mera", "Name", "Manoj", "Nishad", "Hai"],
};
const spreadStringInObject = {
..."MANOJ",
};
console.log(spreadArrayInObject);
// [ 'Hi', 'Mera', 'Name', 'Manoj', 'Nishad', 'Hai' ]
console.log(spreadStringInObject);
// { '0': 'M', '1': 'A', '2': 'N', '3': 'O', '4': 'J' }

Common Object Methods

JavaScript provides several useful methods for working with objects:

const manojProfile = {
name: "Manoj Nishad",
education: "BCA",
hobbies: ["Code", "Create", "Connect"],
};
console.log(Object.keys(manojProfile)); // ["name", "education", "hobbies"]
console.log(Object.values(manojProfile)); // ["Manoj Nishad", "BCA", ["Code", "Create", "Connect"]]
console.log(Object.entries(manojProfile)); // [ [ "name", "Manoj Nishad" ], [ "education", "BCA" ], [ "hobbies", [ 'Code', 'Create', 'Connect' ] ] ]
console.log(manojProfile.hasOwnProperty("name")); // true

Working with Arrays of Objects

Arrays of objects are common when working with API data:

const dataFromDatabase = [
{ userId: 1, username: "umesh", gender: "male" },
{ userId: 2, username: "utkarsh", gender: "male" },
{ userId: 3, username: "aman", gender: "male" },
{ userId: 4, username: "rohit", gender: "male" },
];
console.log(dataFromDatabase[0].userId); // 1
console.log(dataFromDatabase[1].username); // "utkarsh"

Object Destructuring

Destructuring allows you to extract values from objects easily:

const movieObj = {
title: "12th Fail",
actor: ["Manoj Kumar", "Shraddha Joshi"],
year: 2024,
ratings: "10/10",
};
const { title: movieName, actor: actorsList, ...restPropertiesObj } = movieObj;
console.log(movieName, actorsList, restPropertiesObj);
// "12th Fail" [ 'Manoj Kumar', 'Shraddha Joshi' ] { year: 2024, ratings: '10/10' }

Nested Destructuring

You can also destructure nested objects and arrays:

const users = [
{ userId: 1, username: "umesh", gender: "male" },
{ userId: 2, username: "utkarsh", gender: "male" },
{ userId: 3, username: "aman", gender: "male" },
{ userId: 4, username: "rohit", gender: "male" },
];
const [{ username }, user2, { userId }, user4] = users;
console.log(username, user2, userId, user4);
// "umesh" { userId: 2, username: 'utkarsh', gender: 'male' } 3 { userId: 4, username: 'rohit', gender: 'male' }

JSON Basics

JSON (JavaScript Object Notation) is a common data format used for API responses:

{
"gender": "female",
"name": {
"title": "Mrs",
"first": "Christina",
"last": "Gomez"
},
"mobile": "9149045555"
}

Conclusion

Understanding JavaScript objects is crucial for effective programming. They allow you to structure and manipulate data in powerful ways. Practice working with objects, their methods, and advanced techniques like destructuring to become proficient in JavaScript development.

Remember, objects are reference types, so be cautious when copying or modifying them to avoid unintended side effects. Always consider using methods like Object.assign() or the spread operator when you need to create a new object based on an existing one.

Happy coding!