Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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).

share|improve this question
Does the order matter? – meder Oct 18 '09 at 8:38
3  
@meder: ya order matter – Vijjendra Oct 18 '09 at 8:39

10 Answers

up vote 197 down vote accepted

To just merge the arrays (without removing duplicates) use Array.concat:

var array1 = ["Vijendra","Singh"];
var array2 = ["Singh", "Shakya"];

var array3 = array1.concat(array2); // Merges both arrays

Since there is no 'built in' way to remove duplicate (ECMA-262 actually has Array.forEach which would be great for this..), so we do it manually:

Array.prototype.unique = function() {
    var a = this.concat();
    for(var i=0; i<a.length; ++i) {
        for(var j=i+1; j<a.length; ++j) {
            if(a[i] === a[j])
                a.splice(j--, 1);
        }
    }

    return a;
};

Then, to use it:

var array1 = ["Vijendra","Singh"];
var array2 = ["Singh", "Shakya"];
// Merges both arrays and gets unique items
var array3 = array1.concat(array2).unique(); 

This will also preserve the order of the arrays (i.e, no sorting needed).

EDIT:

Since many people are annoyed about prototype augmentation of Array.prototype and for in loops, here is a less invasive way to use it:

function arrayUnique(array) {
    var a = array.concat();
    for(var i=0; i<a.length; ++i) {
        for(var j=i+1; j<a.length; ++j) {
            if(a[i] === a[j])
                a.splice(j--, 1);
        }
    }

    return a;
};

var array1 = ["Vijendra","Singh"];
var array2 = ["Singh", "Shakya"];
    // Merges both arrays and gets unique items
var array3 = arrayUnique(array1.concat(array2));

For those who are fortunate enough to work with progressive browsers where ES5 is available, you can use Object.defineProperty:

Object.defineProperty(Array.prototype, 'unique' {
    enumerable: false,
    configurable: false,
    writable: false,
    value: function() {
        var a = this.concat();
        for(var i=0; i<a.length; ++i) {
            for(var j=i+1; j<a.length; ++j) {
                if(a[i] === a[j])
                    a.splice(j--, 1);
            }
        }

        return a;
    }
});
share|improve this answer
17  
Note that this algorithm is O(n^2). – Gumbo Oct 18 '09 at 8:54
3  
Let [a, b, c] and [x, b, d] be the arrays (assume quotes). concat gives [a, b, c, x, b, d]. Wouldn't the unique()'s output be [a, c, x, b, d]. That doesn't preserve the order I think - I believe OP wants [a, b, c, x, d] – Amarghosh Oct 18 '09 at 9:04
9  
OP accepted the first answer that got him working and signed off it seems. We are still comparing each others' solutions, finding-n-fixing faults, improving performance, making sure its compatible everywhere and so on... The beauty of stackoverflow :-) – Amarghosh Oct 18 '09 at 11:10
2  
I originally up-voted this but have changed my mind. Assigning prototypes to Array.prototype has the consequences of breaking "for ... in" statements. So the best solution is probably to use a function like this but not assign it as a prototype. Some people may argue that "for ... in" statements shouldn't be used to iterate array elements anyway, but people often use them that way so at the very least this solution be used with caution. – Code Commander Feb 2 '11 at 0:49
1  
you should always use for ... in with hasOwnProperty in which case the prototype method is fine – mulllhausen Jan 1 at 12:17
show 6 more comments

Time flies when you're having fun. With Underscore or Lo-Dash you can do:

_.union([1, 2, 3], [101, 2, 1, 10], [2, 1]);
=> [1, 2, 3, 101, 10]

http://documentcloud.github.com/underscore/#union

http://lodash.com/docs#union

share|improve this answer
4  
Great answer! +1. Dear reader, please compare this ONE-LINE-ANSWER to all the other answers. Ask yourself, which would be easier to maintain? Then go check out 4k _underscore.js, and use it to reduce the amount of custom JavaScript iterators you may have... all over the place. Hope that helps. All the best! Nash – ClintNash Jun 23 '12 at 4:33
a set would by definition not preserve the order of a merged array because it does not have any order? – Ygg Jan 25 at 13:15
2  
Or, perhaps even better than underscore, the API-compatible lodash. – Brian M. Hunt Feb 9 at 15:02

Why don't you use an object? It looks like you're trying to model a set. This wont preserve the order, however.

var set1 = {"Vijendra":true, "Singh":true}
var set2 = {"Singh":true,  "Shakya":true}

// Merge second object into first
function merge(set1, set2){
  for (var key in set2){
    if (set2.hasOwnProperty(key))
      set1[key] = set2[key]
  }
  return set1
}

merge(set1, set2)

// Create set from array
function setify(array){
  var result = {}
  for (var item in array){
    if (array.hasOwnProperty(item))
      result[array[item]] = true
  }
  return result
}
share|improve this answer
Don’t you mean if (!set1.hasOwnProperty(key))? – Gumbo Oct 18 '09 at 8:56
Why would I mean that? The purpose of that condition is to ignore properties that may be in the object's prototype. – Nick Retallack Oct 18 '09 at 19:13
//Array.indexOf was introduced in javascript 1.6 (ECMA-262) 
//We need to implement it explicitly for other browsers, 
if (!Array.prototype.indexOf)
{
  Array.prototype.indexOf = function(elt, from)
  {
    var len = this.length >>> 0;

    for (; from < len; from++)
    {
      if (from in this &&
          this[from] === elt)
        return from;
    }
    return -1;
  };
}
//now, on to the problem

var array1 = ["Vijendra","Singh"];
var array2 = ["Singh", "Shakya"];

var merged = array1.concat(array2);
var t;
for(i = 0; i < merged.length; i++)
  if((t = merged.indexOf(i + 1, merged[i])) != -1)
  {
    merged.splice(t, 1);
    i--;//in case of multiple occurrences
  }

Implementation of indexOf method for other browsers is taken from MDC

share|improve this answer
There already is a indexOf method for arrays. – Gumbo Oct 18 '09 at 8:48
I couldn't find it in w3schools, that's why I wrote it. w3schools.com/jsref/jsref_obj_array.asp Does it take a from parameter btw? – Amarghosh Oct 18 '09 at 8:51
14  
Seriously - w3schools is a horrible reference. – meder Oct 18 '09 at 9:10
Thanks @Gumbo and @meder - gonna change my bookmarks now. I'm yet to do anything serious in js and I use w3schools for casual reference (that's all I've ever needed) - may be that's why I didn't realize that. – Amarghosh Oct 18 '09 at 9:15
3  
IE6 doesn't support Array.prototype.indexOf, just paste the support method given by Mozilla so IE doesn't throw an error. – meder Oct 18 '09 at 9:37
show 2 more comments
Array.prototype.merge = function(/* variable number of arrays */){
    for(var i = 0; i < arguments.length; i++){
        var array = arguments[i];
        for(var j = 0; j < array.length; j++){
            if(this.indexOf(array[j]) === -1) {
                this.push(array[j]);
            }
        }
    }
    return this;
};

A much better array merge function.

share|improve this answer

Just throwing in my two cents.

function mergeStringArrays(a, b){
    var hash = {};
    var ret = [];

    for(var i=0; i < a.length; i++){
        var e = a[i];
        if (!hash[e]){
            hash[e] = true;
            ret.push(e);
        }
    }

    for(var i=0; i < b.length; i++){
        var e = b[i];
        if (!hash[e]){
            hash[e] = true;
            ret.push(e);
        }
    }

    return ret;
}

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.

share|improve this answer
Would love it if you could explain more about how this works! I'm struggling to follow your code, simple as it is. Sorry! – aaronsnoswell Jan 10 at 3:58
Never mind - I figured it out. This is neato! – aaronsnoswell Jan 10 at 4:00

Take two arrays a and b

var a = ['a','b','c'];

var b = ['d','e','f'];
var c = a.concat(b); 


//c is now an an array with: ['a','b','c','d','e','f']
share|improve this answer

New solution ( which uses Array.prototype.indexOf and Array.prototype.concat ):

Array.prototype.uniqueMerge = function( a ) {
    for ( var nonDuplicates = [], i = 0, l = a.length; i<l; ++i ) {
        if ( this.indexOf( a[i] ) === -1 ) {
            nonDuplicates.push( a[i] );
        }
    }
    return this.concat( nonDuplicates )
};

Usage:

>>> ['Vijendra', 'Singh'].uniqueMerge(['Singh', 'Shakya'])
["Vijendra", "Singh", "Shakya"]

Array.prototype.indexOf ( for internet explorer ):

Array.prototype.indexOf = Array.prototype.indexOf || function(elt)
  {
    var len = this.length >>> 0;

    var from = Number(arguments[1]) || 0;
    from = (from < 0) ? Math.ceil(from): Math.floor(from); 
    if (from < 0)from += len;

    for (; from < len; from++)
    {
      if (from in this && this[from] === elt)return from;
    }
    return -1;
  };
share|improve this answer
@Mender: Thanks it is working... – Vijjendra Oct 18 '09 at 8:46
@Mender: if order is not matter then how I do this – Vijjendra Oct 18 '09 at 8:46
1  
There already is a indexOf method for arrays. – Gumbo Oct 18 '09 at 8:49
1  
It's not a standard ECMAScript method defined for Array.prototype, though I'm aware you can easily define it for IE and other browsers which don't support it. – meder Oct 18 '09 at 8:50
I wonder why this got selected instead of mine. – LiraNuna Oct 18 '09 at 8:50
show 12 more comments

In Dojo 1.6+

var unique = []; 
var array1 = ["Vijendra","Singh"];
var array2 = ["Singh", "Shakya"];
var array3 = array1.concat(array2); // Merged both arrays

dojo.forEach(array3, function(item) {
    if (dojo.indexOf(unique, item) > -1) return;
    unique.push(item); 
});

Update

See working code.

http://jsfiddle.net/UAxJa/1/

share|improve this answer

Here is my solution https://gist.github.com/4692150 with deep equals and easy to use result:

function merge_arrays(arr1,arr2)
{
   ... 
   return {first:firstPart,common:commonString,second:secondPart,full:finalString}; 
}

console.log(merge_arrays(
[
[1,"10:55"] ,
[2,"10:55"] ,
[3,"10:55"]
],[
[3,"10:55"] ,
[4,"10:55"] ,
[5,"10:55"]
]).second);

result:
[
[4,"10:55"] ,
[5,"10:55"]
]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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