Looking for a function in underscore.js that will take 2 arrays and return a new array of unique values? Something like _without
_.without([0, 1, 3, 9], [1, 3])
var result = _.reject([0, 1, 3, 9], function(num) { return _.include([1, 3], num); });