Answers for "how to remove an object from an array js"

282

javascript array remove element

var colors = ["red","blue","car","green"];
var carIndex = colors.indexOf("car");//get  "car" index
//remove car from the colors array
colors.splice(carIndex, 1); // colors = ["red","blue","green"]
Posted by: Guest on July-19-2019
3

how to find and remove object from array in javascript

var id = 88;

for(var i = 0; i < data.length; i++) {
    if(data[i].id == id) {
        data.splice(i, 1);
        break;
    }
}
Posted by: Guest on November-26-2020
1

how to remove an object from an array javascript

someArray.splice(x, 1);// if you want to remove element at position x
Posted by: Guest on March-29-2021

Code answers related to "how to remove an object from an array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language