I donβt see the exact opposite, but you can just use filter , which allows you to specify the function as a predicate (or similarly, reject ):
_.filter(customers, function(customer) { typeof customer.Selected == "undefined" });
Similarly, if you need a list of clients whose Selected is undefined or false:
_.reject(customers, function(customer) { customer.Selected === true });
source share