Answers for "how to remove element from array in javascript using lodash"

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
0

remove element from array lodash

var arr = [1, 2, 3, 3, 4, 5];
_.remove(arr, function(e) {
    return e === 3;
});
console.log(arr);
Posted by: Guest on May-15-2020

Code answers related to "how to remove element from array in javascript using lodash"

Code answers related to "Javascript"

Browse Popular Code Answers by Language