“LOdash no quitarse en matriz” Código de respuesta

LOdash elimina los valores indefinidos de la matriz

var colors = ["red",undefined,"","blue",null,"crap"];
// remove undefined, null, "" and any other crap
var cleanColors=_.without(colors,undefined,null,"","crap");
//cleanColors is now ["red","blue"];
Grepper

lodash eliminar elemento de la lista

var colors = ["red","blue","green","green"];
var greens = _.remove(colors, function(c) {
    return (c === "green"); //remove if color is green
});
//colors is now ["red","blue"]
//greens is now ["green","green"]
Grepper

Eliminar elemento de la matriz lodash

var arr = [1, 2, 3, 3, 4, 5];
_.remove(arr, function(e) {
    return e === 3;
});
console.log(arr);
Modern Marten

LOdash no quitarse en matriz

var a = [
  {id: 1, name: 'A'},
  {id: 2, name: 'B'},
  {id: 3,  name: 'C'},
  {id: 4, name: 'D'}
];
var removeItem = [1,2];
removeItem.forEach(function(id){
   var itemIndex = a.findIndex(i => i.id == id);
   a.splice(itemIndex,1);
});
console.log(a);
Weary Worm

Respuestas similares a “LOdash no quitarse en matriz”

Preguntas similares a “LOdash no quitarse en matriz”

Más respuestas relacionadas con “LOdash no quitarse en matriz” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código