“Lodash Remova valores indefinidos da matriz” Respostas de código

Lodash Remova valores indefinidos da 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 Remova não na 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

Respostas semelhantes a “Lodash Remova valores indefinidos da matriz”

Perguntas semelhantes a “Lodash Remova valores indefinidos da matriz”

Mais respostas relacionadas para “Lodash Remova valores indefinidos da matriz” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código