“Usuń falsy wartości z obiektu Lodash” Kod odpowiedzi

Lodash Usuń niezdefiniowane wartości z obiektu

var person = {"name":"bill","age":21,"sex":undefined,"height":"crap"};
//remove undefined properties or other crap
var cleanPerson = _.pickBy(person, function(value, key) {
  return !(value === undefined || value === "crap");
});
//cleanPerson is now { "name": "bill","age": 21}
Grepper

Lodash Usuń NULL z obiektu

_.omitBy({ a: null, b: 1, c: undefined, d: false }, _.isNil)
Hungry Hedgehog

Usuń falsy wartości z obiektu Lodash

const person = { 'name':'bill', 'age':21, 'sex':undefined, 'height':null, 'hasPet':false };
//only keep truthy values
const cleanPerson = _.pickBy(person, _.identity);
//cleanPerson is now { "name":"bill", "age":21 }
Merlin4 (personal)

Usuń falsy wartości z obiektu Lodash

const person = { "name":"bill", "age":21, "sex":undefined, "height":null, "hidden":false };
//remove falsy values
const cleanPerson = _.pickBy(person);
//cleanPerson is now { "name":"bill", "age":21 }
Merlin4 (ranken)

Odpowiedzi podobne do “Usuń falsy wartości z obiektu Lodash”

Pytania podobne do “Usuń falsy wartości z obiektu Lodash”

Więcej pokrewnych odpowiedzi na “Usuń falsy wartości z obiektu Lodash” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu