I have two arrays in javascript like:
var array1 = ["Vijendra","Singh"];
var array2 = ["Singh", "Shakya"];
I want the output to be:
var array3= ["Vijendra","Singh","Shakya"];
(Removing repeated words while merging the arrays).
|
I have two arrays in javascript like:
I want the output to be:
(Removing repeated words while merging the arrays). |
|||||||
|
|
To just merge the arrays (without removing duplicates) use
Since there is no 'built in' way to remove duplicate (ECMA-262 actually has
Then, to use it:
This will also preserve the order of the arrays (i.e, no sorting needed). EDIT: Since many people are annoyed about prototype augmentation of
For those who are fortunate enough to work with progressive browsers where ES5 is available, you can use
|
|||||||||||||||||||||
|
|
Time flies when you're having fun. With Underscore or Lo-Dash you can do:
|
|||||||||||
|
|
Why don't you use an object? It looks like you're trying to model a set. This wont preserve the order, however.
|
|||||
|
Implementation of |
|||||||||||||||
|
A much better array merge function. |
||||
|
|
|
Just throwing in my two cents.
This is a method I use a lot, it uses an object as a hashlookup table to do the duplicate checking. Assuming that the hash is O(1), then this runs in O(n) where n is a.length + b.length. I honestly have no idea how the browser does the hash, but it performs well on many thousands of data points. |
|||||
|
|
Take two arrays a and b
|
||||
|
|
|
New solution ( which uses
Usage:
Array.prototype.indexOf ( for internet explorer ):
|
|||||||||||||||
|
|
In Dojo 1.6+
Update See working code. |
||||
|
|
|
Here is my solution https://gist.github.com/4692150 with deep equals and easy to use result:
|
|||
|
|