I need a javascript function that can take in a string and an array, and return true if that string is in the array..

 function inArray(str, arr){
   ...
 }

caveat: it can't use any javascript frameworks.

link|improve this question

70% accept rate
feedback

4 Answers

up vote 3 down vote accepted

Something like this?

function in_array(needle, haystack)
{
    for(var key in haystack)
    {
        if(needle === haystack[key])
        {
            return true;
        }
    }

    return false;
}
link|improve this answer
I probably should not have used for(key in array). If someone has extended the Array object then it will iterate over the new methods/properties as well (not just the array values). – Matthew May 21 '09 at 0:11
feedback

You could just make an array prototype function ala:

Array.prototype.hasValue = function(value) {
  var i;
  for (i=0; i<this.length; i++) { if (this[i] === value) return true; }
  return false;
}

if (['test'].hasValue('test')) alert('Yay!');

Note the use of '===' instead of '==' you could change that if you need less specific matching... Otherwise [3].hasValue('3') will return false.

link|improve this answer
+1. And good idea explaining the difference between '===' and '=='. Only quibble, I'd include the var declaration in the for: for (var i = 0; ...) – Grant Wagner May 21 '09 at 15:08
1  
Including the var in the for(...) is logically misleading, as it suggests the scope of the var is only inside the for loop (to multi-lingual programmers). However, the scope is the entire function. Also, declaring variables at the highest point in their scope is usually considered a good practice and a great way to avoid scope conflicts. – Kato Nov 8 '11 at 18:22
@Kato - Thanks for backing me up! - I didn't have any luck finding a nice way of saying that back when Grant Wagner suggested it... – gnarf Nov 9 '11 at 8:53
feedback

Take a look at this related question. Here's the code from the top-voted answer.

function contains(a, obj) {
  var i = a.length;
  while (i--) {
    if (a[i] === obj) {
      return true;
    }
  }
  return false;
}
link|improve this answer
feedback

you can use arr.indexOf()

http://www.w3schools.com/jsref/jsref_indexof_array.asp

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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