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]);

I would like => [0,9] returned

It appears _without's 2nd arg is a list of values, not an array. Anyone out there know if underscore has the specific function I'm looking for? Or can I take an exisitng array and covert it to values the function expects.

Thanks,
~ck in San Diego

link|improve this question

67% accept rate
thanks for the edit Jeff. typo. – Hcabnettek Apr 19 '11 at 20:29
feedback

3 Answers

up vote 5 down vote accepted

_.without.apply(_, [arr1].concat(arr2))

[[0, 1, 3, 9]].concat([1, 3]) is [[0, 1, 3, 9], 1, 3];

_.without.apply(_, [[0, 1, 3, 9], 1, 3]) is _.without([0, 1, 3, 9], 1, 3)

You've got a perfectly good _.without method. So just convert an array into a list of values you can pass into a function. This is the purpose of Function.prototype.apply

link|improve this answer
Both solutions are correct however, I like the that you do the conversion to the style of arguments that the function needs. Well done!!! – Hcabnettek Apr 19 '11 at 21:18
feedback
var result = _.reject([0, 1, 3, 9], function(num) {
                return _.include([1, 3], num);
            });
link|improve this answer
feedback

The _.difference function should give you what you're looking for:

_.difference([0, 1, 3, 9], [1, 3]); // => [0, 9]
link|improve this answer
One function I don't see is one that in the case of ([0,1,3,9], [1,3,12]) gives [0,9,12]. I think that's "disjunction" – grantwparks Mar 31 at 22:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.