Remove an Object from an Array by Value in JavaScript

Introduction

In JavaScript, arrays a commonly used and flexible data structure. They can hold any type of value, including objects. However, there may be times when you need to remove an object from an array based on its value.

This Byte will explore two methods to achieve this: Array.findIndex() and Array.slice().

Why remove an object by value?

When dealing with arrays in JavaScript, you might encounter situations where you need to remove an object based on its value rather than its index. This is particularly useful when you don't know the index of the object, or if the object exists multiple times in the array. Removing an object by value helps make sure that all instances of that particular value are eliminated, providing a better way to manage your data.

Using Array.filter() to Remove an Object

The Array.filter() method is a versatile and handy way to remove an object from an array by its value. It creates a new array with all elements that pass the test provided by the callback function.

Here's how you can use it:

const people = [{name: 'Billy', age: 12},{name: 'Timmy', age: 20},{name: 'Tommy', age: 22},{name: 'Jimmy', age: 25}];
const minAge = 21;

const filteredPeople = people.filter(p => p.age > minAge);

console.log(filteredPeople); // Output: [{name: 'Tommy', age: 22},{name: 'Jimmy', age: 25}]

Note: The Array.filter() method does not modify the original array but returns a new one. If you want to update the original array, you'll need to assign the filtered array back to the original variable.

Using Lodash's remove() to Remove an Object

Lodash is a popular utility library that provides many helpful functions, including one for removing objects from an array by value. You may want to use Lodash instead of the built-in filter() method if you're using an older version of Node.js that doesn't support it.

First, you'll need to include Lodash in your project. You can install it via npm:

$ npm install lodash

Then, you can use the _.remove() method to remove an object by its value:

const _ = require('lodash');

let people = [{name: 'Billy', age: 12},{name: 'Timmy', age: 20},{name: 'Tommy', age: 22},{name: 'Jimmy', age: 25}];
const minAge = 21;

_.remove(people, p => p.age > minAge);

console.log(people); // Output: [{name: 'Tommy', age: 22},{name: 'Jimmy', age: 25}]
Get free courses, guided projects, and more

No spam ever. Unsubscribe anytime. Read our Privacy Policy.

Note: Unlike Array.filter(), the _.remove() method modifies the original array. Make sure to use it only when you intend to alter the source array.

Using Array.findIndex() to Remove an Object

The Array.findIndex() method returns the index of the first element in the array that matches the provided testing function. If no elements are found with the testing function, then it returns -1. This makes it a useful method for finding the index of an object in an array.

Here's an example:

let arr = [{name: 'John', age: 25}, {name: 'Jane', age: 30}, {name: 'John', age: 25}];

let index = arr.findIndex(obj => obj.name === 'John' && obj.age === 25);

if (index !== -1) {
    arr.splice(index, 1);
}

console.log(arr);
// Output: [ { name: 'Jane', age: 30 }, { name: 'John', age: 25 } ]

In this example, we're finding the index of the first object that has name as 'John' and age as 25. We then use Array.splice() to remove the object at that index.

Using Array.slice() to Remove an Object

The Array.slice() method can be used to remove an object from an array by creating a new array that excludes the object.

Here's an example:

let arr = [{name: 'John', age: 25}, {name: 'Jane', age: 30}, {name: 'John', age: 25}];

let index = arr.findIndex(obj => obj.name === 'John' && obj.age === 25);

if (index !== -1) {
    let newArr = arr.slice(0, index).concat(arr.slice(index + 1));
    console.log(newArr);
    // Output: [ { name: 'Jane', age: 30 }, { name: 'John', age: 25 } ]
}

In this example, we're creating a new array that includes all elements before the target object and all elements after the target object, effectively excluding the target object.

Note: Keep in mind that the Array.slice() method does not modify the original array. Instead, it returns a new array with the modification you made.

Conclusion

In JavaScript, removing an object from an array by its value requires a bit more work than removing a primitive value. However, with the Array.filter(), _.remove(), Array.findIndex() and Array.slice() methods, it's perfectly doable. Remember, Array.findIndex() is used to find the index of the object, and Array.splice() or Array.slice() are used to remove the object. These methods provide a flexible way to manipulate arrays in JavaScript.

Last Updated: August 21st, 2023
Was this helpful?
Project

React State Management with Redux and Redux-Toolkit

# javascript# React

Coordinating state and keeping components in sync can be tricky. If components rely on the same data but do not communicate with each other when...

David Landup
Uchechukwu Azubuko
Details

© 2013-2024 Stack Abuse. All rights reserved.

AboutDisclosurePrivacyTerms