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

i need to determine if a value exists in an array using javascript.

I am using the following function:

Array.prototype.contains = function(obj) {
    var i = this.length;
    while (i--) {
        if (this[i] == obj) {
            return true;
        }
    }
    return false;
}

The above function always returns false.

The array values and the function call is as below

arrValues = ["Sam","Great", "Sample", "High"]
alert(arrValues.contains("Sam"));

Please suggest what to do

share|improve this question
3  
The code works in Safari 4.0.2. BTW: I'd do a === comparison instead of just ==. – Georg Schölly Jul 25 '09 at 8:45
1  
"The above function always returns false." No it doesn't: The function works as expected - the error must be somewhere else. – Christoph Jul 25 '09 at 8:59
1  
See also: stackoverflow.com/q/237104/1569 – Factor Mystic Feb 18 '11 at 21:08
1  
Finally its worked. its due to improper trim of the comparing value. there was some space in the comparing value (A comment from the asker, to the accepted answer.) – ANeves Oct 1 '12 at 9:09

8 Answers

up vote 137 down vote accepted
arrValues.indexOf('Sam') > -1

IE 8 and below do not have the Array.prototype.indexOf method. For these versions of IE use:

if(!Array.prototype.indexOf) {
    Array.prototype.indexOf = function(needle) {
        for(var i = 0; i < this.length; i++) {
            if(this[i] === needle) {
                return i;
            }
        }
        return -1;
    };
}
share|improve this answer
2  
Note that indexOf on arrays is not implemented in IE, but you can define it yourself – RaYell Jul 25 '09 at 8:36
4  
you should use a typed comparison with === to be compatible with the native implementation – Christoph Jul 25 '09 at 9:08
2  
fixed the comparison and added the missing return -1; please note that according to the ES5 spec, this method will behave differently from the native one in case ofsigned zeroes and NaNs (see 15.4.4.14 and 9.12 vs. 11.9.6) – Christoph Jul 25 '09 at 9:26
1  
Finally its worked. its due to improper trim of the comparing value. there was some space in the comparing value – Prasad Jul 25 '09 at 11:10
2  
@RiceFlourCookies, IE < 9. – eyelidlessness Feb 25 '12 at 0:54
show 4 more comments

jQuery has a utility function for this:

$.inArray(value, array)

Returns index of value in array. Returns -1 if array does not contain value.

See also array.contains(obj) in JavaScript

share|improve this answer
26  
Don't let the name "inArray" fool you. As mentioned above (but of course I didn't read closely enough), returns -1 (not false) if the element doesn't exist. – Greg Bernhardt Apr 19 '11 at 20:13

An option that accounts for different types within the array (corrected to make p local to the for-loop):

Array.prototype.contains = function(k) {
    for(var p in this)
        if(this[p] === k)
            return true;
    return false;
}

for example:

var list = ["one",2];

list.contains("one") // returns true
list.contains("2") // returns false
list.contains(2) // returns true
share|improve this answer
1  
Isn't this technique of augmenting built-in types frowned upon? – Twilight Pony Inc. Oct 11 '12 at 3:49
2  
Why does p have to pollute the global scope? – Micah Henning Nov 24 '12 at 1:22
   
Good point Micah. I've modified the code to make p local. – threed Nov 26 '12 at 18:56
1  
Buggy: [1,2,4].contains([].contains) is true. Also unnecessarily slow due to the same bug. Avoid for..in over arrays. – Eamon Nerbonne Jan 17 at 15:02
@Eamon Nerbonne: I just pasted that code into jsfiddle.net and got false. Am I doing something wrong. Also, could you elaborate on how this bug slows the code down? Finally, I wasn't aware that there is a performance difference for "for..in" loops. Could you explain or direct me towards an article where I could read more? – threed Jan 18 at 17:59
show 2 more comments

Given the implementation og indexOf for IE (as described by eyelidlessness):

Array.prototype.contains = function(obj) {
    return this.indexOf(obj) > -1;
};
share|improve this answer
2  
That's redundant. – eyelidlessness Jul 25 '09 at 9:34
Maybe, but it makes your code cleaner. if (myArray.contains(obj)) is easier to read and states the intent better than if (myArray.indexOf(obj) > -1). I definitively would implement both. – rlovtang Jul 25 '09 at 13:52
Does this work in all browsers? Or do some browsers consider the index of "2" and 2 the same? – threed Oct 11 '12 at 20:52

The answer provided didn't work for me, but it gave me an idea:

Array.prototype.contains = function(obj)
    {
        return (this.join(',')).indexOf(obj) > -1;
    }

It isn't perfect because items that are the same beyond the groupings could end up matching. Such as my example

var c=[];
var d=[];
function a()
{
    var e = '1';
    var f = '2';
    c[0] = ['1','1'];
    c[1] = ['2','2'];
    c[2] = ['3','3'];
    d[0] = [document.getElementById('g').value,document.getElementById('h').value];

    document.getElementById('i').value = c.join(',');
    document.getElementById('j').value = d.join(',');
    document.getElementById('b').value = c.contains(d);
}

When I call this function with the 'g' and 'h' fields containing 1 and 2 respectively, it still finds it because the resulting string from the join is: 1,1,2,2,3,3

Since it is doubtful in my situation that I will come across this type of situation, I'm using this. I thought I would share incase someone else couldn't make the chosen answer work either.

share|improve this answer

This is generally what the indexOf() method is for. You would say:

if (arrValues.indexOf('Sam') > -1) {return true;}
else {return false;}
share|improve this answer
8  
you can reduce that to: return (arrValues.indexOf('Sam') > -1); – Kenneth J Apr 22 '10 at 19:34

You can use _.indexOf method or if you don't want to include whole Underscore.js library in your app, you can have a look how they did it and extract necessary code.

    _.indexOf = function(array, item, isSorted) {
    if (array == null) return -1;
    var i = 0, l = array.length;
    if (isSorted) {
      if (typeof isSorted == 'number') {
        i = (isSorted < 0 ? Math.max(0, l + isSorted) : isSorted);
      } else {
        i = _.sortedIndex(array, item);
        return array[i] === item ? i : -1;
      }
    }
    if (nativeIndexOf && array.indexOf === nativeIndexOf) return array.indexOf(item, isSorted);
    for (; i < l; i++) if (array[i] === item) return i;
    return -1;
  };
share|improve this answer

If the list is fixed, you can use the native hasOwnProperty

var arrValues = {Alpha:0, Beta:0, Gamma:0};
alert(arrValues.hasOwnProperty("Beta"));
share|improve this answer
2  
the is not an array. its a hash-map – Harsh Sep 21 '12 at 7:01

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.