GoMan
0
Q:

lodash remove null from object

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}
4
_.omitBy({ a: null, b: 1, c: undefined, d: false }, _.isNil)
0

New to Communities?

Join the community