In this example we will see how to search object by id and remove it from json array in javascript. we need to add JavaScript function that takes in one such array as the first argument and id string in second argument for search and remove object from json array.
After that this function search for the object by that id, and if the array contains that object, we should remove object from json array in javascript.So, let's learn how to remove object from json array in javascript.
Example :
const arr = [
{id: "1", name: "car", type: "vehicle"},
{id: "2", name: "bike", type: "vehicle"},
{id: "3", name: "cycle", type: "vehicle"},
{id: "4", name: "pink", type: "color"},
{id: "5", name: "blue", type: "color"},
{id: "6", name: "red", type: "color"},
];
const removeById = (arr, id) => {
const requiredIndex = arr.findIndex(el => {
return el.id === String(id);
});
if(requiredIndex === -1){
return false;
};
return !!arr.splice(requiredIndex, 1);
};
removeById(arr, 5);
console.log(arr);
Output :
[
{id: "1", name: "car", type: "vehicle"},
{id: "2", name: "bike", type: "vehicle"},
{id: "3", name: "cycle", type: "vehicle"},
{id: "4", name: "pink", type: "color"},
{id: "6", name: "red", type: "color"},
]
In the world of web development, performance is a crucial factor that directly affects user experience. Angular 15, the...
Jun-09-2023
Hello developer! In this guide, we'll see how to add toastr notification in laravel 11. Here, we'll di...
Apr-24-2024
This article will show us how to validate upload file type using javascript. Using this post we can easily check the sel...
Aug-03-2020
In this article, we will see multi step form wizard jquery validation. Here, we will learn jquery validation for mu...
Jan-30-2023