remove undefined values from object lodash code example
Example 1: lodash remove undefined values from array
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"];
Example 2: lodash remove undefined values 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}