Is there a way to return the difference between two arrays in JavaScript?
For example:
var a1 = ['a', 'b'];
var a2 = ['a', 'b', 'c', 'd'];
// need ["c", "d"]
Any advice greatly appreciated.
|
Is there a way to return the difference between two arrays in JavaScript? For example:
Any advice greatly appreciated. |
||||
|
|
|
I assume you are comparing normal array. If no, you need to change for loop to for .. in loop.
function arr_diff(a1, a2)
{
var a=[], diff=[];
for(var i=0;i<a1.length;i++)
a[a1[i]]=true;
for(var i=0;i<a2.length;i++)
if(a[a2[i]]) delete a[a2[i]];
else a[a2[i]]=true;
for(var k in a)
diff.push(k);
return diff;
}
Better solution, if you don't care about backward compatibility is using filter. But still, this solution works, so voting it down is unfair. |
|||||||||||||||
|
Note indexOf and filter are not available in ie before ie9. |
|||||||||||||||||||||
|
|
The difference method in Underscore (or its drop-in replacement, Lodash) can do this too:
As with any Underscore function, you could also use it in a more object-oriented style:
|
|||||||||||||||
|
|
You could use a Set in this case. It is optimized for this kind of operation (union, intersection, difference). Make sure it applies to your case, once it allows no duplicates.
|
|||||||||
|
|
to subtract one array from another, simply use the snippet below:
It will returns ['1,'2','6'] that are items of first array which don't exist in the second. Therefore, according to your problem sample, following code is the exact solution:
|
||||
|
|
|
A solution using
|
|||||||
|
|
Using http://phrogz.net/JS/ArraySetMath.js you can:
|
|||
|
|
|
The above answer by Joshaven Potter is great. But it returns elements in array B that are not in array C, but not the other way around. For example, if
This should output: |
||||
|
|
|
Just thinking... for the sake of a challenge ;-) would this work... (for basic arrays of strings, numbers, etc.) no nested arrays
Note the sorting will likely not be as noted above... but if desired, call .sort() on the array to sort it. |
|||
|
|
|
This is by far the easiest way to get exactly the result you are looking for:
|
|||
|
|
|
How about this:
So this way you can do |
|||||||||
|
|
I was looking for a simple answer that didn't involve using different libraries, and I came up with my own that I don't think has been mentioned here. I don't know how efficient it is or anything but it works;
For my code I need duplicates taken out as well, but I guess that isn't always preferred. I guess the main downside is it's potentially comparing many options that have already been rejected. |
|||
|
|
|
In response to the person who wanted to subtract one array from another... If no more than say 1000 elements try this... Setup a new variable to duplicate Array01 and call it Array03. Now, use the bubble sort algorithm to compare the elements of Array01 with Array02 and whenever you find a match do the following to Array03...
NB: We are modifying Array03 instead of Array01 so as not to screw up the nested loops of the bubble sort! Finally, copy the contents of Array03 to Array01 with a simple assignment, and you're done. |
|||
|
|
|
littlebit fix for the best answer
this will take current type of element in consideration. b/c when we make a[a1[i]] it converts a value to string from its oroginal value, so we lost actual value. |
|||
|
|
|
I wanted a similar function which took in an old array and a new array and gave me an array of added items and an array of removed items, and I wanted it to be efficient (so no .contains!). You can play with my proposed solution here: http://jsbin.com/osewu3/12. Can anyone see any problems/improvements to that algorithm? Thanks! Code listing:
|
|||
|
|
|
Samuel: "For my code I need duplicates taken out as well, but I guess that isn't always preferred. I guess the main downside is it's potentially comparing many options that have already been rejected." When comparing TWO lists, Arrays, etc, and the elements are less than 1000, the industry standard in the 3GL world is to use the bubble sort which avoids dupes. The code would look something like this... (untested but it should work)
To test the output...
|
||||
|
|
|
There's a lot of problems with the answers I'm reading here that make them of limited value in practical programming applications. First and foremost, you're going to want to have a way to control what it means for two items in the array to be "equal". The === comparison is not going to cut it if you're trying to figure out whether to update an array of objects based on an ID or something like that, which frankly is probably one of the most likely scenarios in which you will want a diff function. It also limits you to arrays of things that can be compared with the === operator, i.e. strings, ints, etc, and that's pretty much unacceptable for grown-ups. Secondly, there are three state outcomes of a diff operation:
I think this means you need no less than 2 loops, but am open to dirty tricks if anybody knows a way to reduce it to one. Here's something I cobbled together, and I want to stress that I ABSOLUTELY DO NOT CARE that it doesn't work in old versions of Microshaft browsers. If you work in an inferior coding environment like IE, it's up to you to modify it to work within the unsatisfactory limitations you're stuck with.
|
||||
|
|
|
You can use underscore.js : http://underscorejs.org/#intersection You have needed methods for array :
|
|||
|
|