vote up 11 vote down star
2

What is most concise/efficient way to find out if a javascript array contains an obj?

This is the only way I know to do it:

contains(a, obj){
  for(var i = 0; i < a.length; i++) {
    if(a[i] === obj){
      return true;
    }
  }
  return false;
}

Is there a better/more concise way to accomplish this?

This is very closely related to this question which addresses finding objects in an array using indexOf.

flag

70% accept rate

7 Answers

vote up 15 vote down check

jQuery has a utility function for this:

$.inArray(value, array)

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

jQuery has several useful utility functions.

Some other frameworks:

  • dojo: dojo.indexOf(array, value, [fromIndex, findLast]) docs. Dojo has a lot of utility functions, see http://api.dojotoolkit.org (scroll down to Functions).
  • prototype: array.indexOf(value) docs
  • mootools: array.indexOf(value) docs
  • mochikit: findValue(array, value) docs
  • MS Ajax: array.indexOf(value) docs

Notice how some frameworks implements this as function. While other frameworks adds the function to the array prototype.

link|flag
vote up 22 vote down

As others have said, the iteration through the array is probably the best way, but it has been proven that decreasing while loop is the fastest way to iterate in JavaScript. So you may want to rewrite your code as follows:

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

Of course, you may as well extend Array prototype:

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

And now you can simply use the following:

alert([1, 2, 3].contains(2)); // => true
alert([1, 2, 3].contains('2')); // => false
link|flag
vote up 3 vote down

indexOf maybe, but it's a "JavaScript extension to the ECMA-262 standard; as such it may not be present in other implementations of the standard."

Example:

[1, 2, 3].indexOf(1) => 0
["foo", "bar", "baz"].indexOf("bar") => 1
[1, 2, 3].indexOf(4) => -1

AFAICS Microsoft does not offer some kind of alternative to this, but you can add similar functionality to arrays in IE (and other browsers that don't support indexOf) if you want to, as a quick google search reveals (e.g. this one).

link|flag
actually, there is an example of the an implementation of the indexOf extension for browsers that do not support it on the developer.mozilla.org page you linked to. – Lloyd Cotten Mar 24 at 21:24
vote up 3 vote down

Here's a Javascript 1.6 compatible implementation of Array.indexOf:

if (!Array.indexOf)
{
  Array.indexOf = [].indexOf ?
      function (arr, obj, from) { return arr.indexOf(obj, from); }:
      function (arr, obj, from) { // (for IE6)
        var l = arr.length,
            i = from ? parseInt( (1*from) + (from<0 ? l:0), 10) : 0;
        i = i<0 ? 0 : i;
        for (; i<l; i++) {
          if (i in arr  &&  arr[i] === obj) { return i; }
        }
        return -1;
      };
}
link|flag
vote up 1 vote down

If you are using JavaScript 1.6 or later (Firefox 1.5 or later) you can use Array.indexOf. Otherwise, I think you are going to end up with something similar to your original code.

link|flag
vote up 1 vote down

Here's how Prototype does it:

/**
 *  Array#indexOf(item[, offset = 0]) -> Number
 *  - item (?): A value that may or may not be in the array.
 *  - offset (Number): The number of initial items to skip before beginning the
 *      search.
 *
 *  Returns the position of the first occurrence of `item` within the array &mdash; or
 *  `-1` if `item` doesn't exist in the array.
**/
function indexOf(item, i) {
  i || (i = 0);
  var length = this.length;
  if (i < 0) i = length + i;
  for (; i < length; i++)
    if (this[i] === item) return i;
  return -1;
}

Also see here for how they hook it up.

link|flag
vote up 0 vote down

Extending the javascript Array object is a really bad idea because you introduce new properties (your custom methods) into for-in loops which can break existing scripts. A few years ago the authors of the Prototype library had to re-engineer their library implementation to remove just this kind of thing.

If you don't need to worry about compatibility with other javascript running on your page, go for it, otherwise, I'd recommend the more awkward, but safer free-standing function solution.

link|flag

Your Answer

Get an OpenID
or

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