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 an array of numbers that I need to make sure are unique. I found the code snippet below on the internet and it works great until the array has a zero in it. I found this other script here on SO that looks almost exactly like it, but it doesn't fail.

So for the sake of helping me learn, can someone help me determine where the prototype script is going wrong?

Array.prototype.getUnique = function() {
 var o = {}, a = [], i, e;
 for (i = 0; e = this[i]; i++) {o[e] = 1};
 for (e in o) {a.push (e)};
 return a;
}

Edit: Opps, I accidentally removed the a in return a

share|improve this question

13 Answers

up vote 51 down vote accepted

There is no need to use 2 for loops, just put one small if statement inside loop

Array.prototype.getUnique = function(){
   var u = {}, a = [];
   for(var i = 0, l = this.length; i < l; ++i){
      if(u.hasOwnProperty(this[i])) {
         continue;
      }
      a.push(this[i]);
      u[this[i]] = 1;
   }
   return a;
}
share|improve this answer
13  
Thank you and Merry Christmas! – Mottie Dec 25 '09 at 13:30
1  
This will only work when String(elem1) === String(elem2) IFF elem1 === elem2 for all elements in the array. Here's a test case that fails: equal([{a: 5}, {b: 2}].getUnique().length, 2). – kpozin Apr 24 '12 at 22:03
Yes, this script isn't generic, it can only handle primitive data and assumes an array contains only data of one type. To create a generic function, two nested loops (or array sort + loop) are required instead of a loop + object cache. But based on the question and sample code I assumed, that we are dealing with array of numbers. – Rafael Apr 24 '12 at 22:04
The 'in' operator will search through the Object.prototype, so if someone accidentally creates Object.prototype['5'] = 1; [4, 5].getUnique() will return [4]. To avoid this issue, use if(Object.prototype.hasOwnProperty.call(u, this[i])) continue; instead. – Yuriy Nemtsov May 31 '12 at 1:04
1  
-1 for the contorted if (! predicate), and +1 for being what I was looking for. – richard Jan 7 at 21:26

I have since found a nice method that uses jQuery

arr = $.grep(arr, function(v, k){
    return $.inArray(v ,arr) === k;
});

Note: This code was pulled from Paul Irish's duck punching post - I forgot to give credit :P

share|improve this answer

If you're using Prototype framework there is no need to do 'for' loops, you can use http://www.prototypejs.org/api/array/uniq like this:

var a = Array.uniq();  

Which will produce a duplicate array with no duplicates. I came across your question searching a method to count distinct array records so after

uniq()

I used

size()

and there was my simple result. p.s. Sorry if i misstyped something

edit: if you want to escape undefined records you may want to add

compact()

before, like this:

var a = Array.compact().uniq();  
share|improve this answer
13  
because i found a better answer, i think about topics are for all people not just for the one who asked – decebal Nov 1 '11 at 15:10

You can also use underscore.js.

_.uniq([1, 2, 1, 3, 1, 4]);

which will return:

[1, 2, 3, 4]
share|improve this answer

This prototype "getUnique" is not totally correct, because if i have a Array like: ["1",1,2,3,4,1,"foo"] it will return ["1","2","3","4"] and "1" is string and 1 is a INT, soh they're different.

Here is a correct solution:

Array.prototype.unique = function(a){
return function(){return this.filter(a)}}(function(a,b,c){return c.indexOf(a,b+1)<0
});

using:

$foo = ["1",1,2,3,4,1,"foo"];
$foo.unique();
//returns ["1",2,3,4,1,"foo"]

[]'s d4ng3rmax

share|improve this answer

That's because 0 is a falsy value in JavaScript.

this[i] will be falsy if the value of the array is 0 or any other falsy value.

share|improve this answer
Right, and that would be why. +1 – danben Dec 25 '09 at 4:33
Ahhhh, ok I see now... but would there be an easy fix to make it work? – Mottie Dec 25 '09 at 4:46

With JavaScript 1.6 you can use the native filter method of an Array in the following way to get an array with unique values:

function onlyUnique(value, index, self) { 
    return self.indexOf(value) === index;
}

// usage example:
var a = ['a', 1, 'a', 2, '1'];
var unique = a.filter( onlyUnique ); // returns ['a', 1, 2, '1']

Update: added more detailed explanation:

What this do is:

The native method filter will loop throw the array and copy only entries that pass the given callback function onlyUnique.

onlyUnique checks, if the given value is the first occurring. If not, it must be a duplicate and will not be copied.

This solution works without jQuery or prototype.js. It works for arrays with mixed value types too.

share|improve this answer
1  
+1 Thanks for sharing! The only issue I see is that IE versions < 9 don't have an array indexOf function (obviously), which is why the other answers are using loops. – Mottie Jan 21 at 14:02
@Motti Exactly, because <=ie8 do not have JavaScript 1.6 support. If you follow the link filter you will find at bottom a table with Browser compatibility. – TLindig Feb 13 at 9:42
Array.prototype.getUnique = function() {
    var o = {}, a = []
    for (var i = 0; i < this.length; i++) o[this[i]] = 1
    for (var e in o) a.push(e)
    return a
}
share|improve this answer

You can also use jQuery

var a = [1,5,1,6,4,5,2,5,4,3,1,2,6,6,3,3,2,4];

// note: jQuery's filter params are opposite of javascript's native implementation :(
var unique = $.makeArray($(a).filter(function(i,itm){ 
    // note: 'index', not 'indexOf'
    return i == $(a).index(itm);
}));

// unique: [1, 5, 6, 4, 2, 3]

Originally answered at: jQuery function to get all unique elements from an array?

share|improve this answer
2  
This one seems only to work for arrays of integers. When I include some strings they all get stripped out of the result. – hippietrail Sep 10 '12 at 7:30

From Shamasis Bhattacharya's blog (O(2n) time complexity) :

Array.prototype.unique = function() {
    var o = {}, i, l = this.length, r = [];
    for(i=0; i<l;i+=1) o[this[i]] = this[i];
    for(i in o) r.push(o[i]);
    return r;
};

From Paul Irish's blog: improvement on JQuery .unique() :

(function($){

    var _old = $.unique;

    $.unique = function(arr){

        // do the default behavior only if we got an array of elements
        if (!!arr[0].nodeType){
            return _old.apply(this,arguments);
        } else {
            // reduce the array to contain no dupes via grep/inArray
            return $.grep(arr,function(v,k){
                return $.inArray(v,arr) === k;
            });
        }
    };
})(jQuery);

// in use..
var arr = ['first',7,true,2,7,true,'last','last'];
$.unique(arr); // ["first", 7, true, 2, "last"]

var arr = [1,2,3,4,5,4,3,2,1];
$.unique(arr); // [1, 2, 3, 4, 5]
share|improve this answer

Without extending Array.prototype (it is said to be a bad practice) or using jquery/underscore, you can simply filter the array.

By keeping last occurrence:

    function arrayLastUnique(array) {
        return array.filter(function (a, b, c) {
            // keeps last occurrence
            return c.indexOf(a, b + 1) < 0;
        });
    },

or first occurrence:

    function arrayFirstUnique(array) {
        return array.filter(function (a, b, c) {
            // keeps first occurrence
            return c.indexOf(a) === b;
        });
    },

Well, it's only javascript 1.6+, which means only IE9+, but it's nice for a development in native HTML/JS (Windows Store App, Firefox OS, Sencha, Phonegap, Titanium, ...).

share|improve this answer

Don't quote me on this but I think that you need to use a string for your property name, like o[e.toString()], and then convert it back when you push it.

Edit: removed dumb mistake.

share|improve this answer

This will work.

function getUnique(a) {
  var b = [a[0]], i, j, tmp;
  for (i = 1; i < a.length; i++) {
    tmp = 1;
    for (j = 0; j < b.length; j++) {
      if (a[i] == b[j]) {
        tmp = 0;
        break;
      }
    }
    if (tmp) {
      b.push(a[i]);
    }
  }
  return b;
}
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.