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

Is there possibility of using .indexOf function with an array to search with? Like This:

var d = "Hello";
var s = new Array ("Heart", "David", "Foo", "Hello");
if( d.indexOf(s) != -1) {
  alert("Found Hello");
}

If I use above code then it does not alert anything. I checked console but no errors.

I read somewhere that .indexOf function is for strings only not for array of string.

Is there alternative of indexOf in Javascript or .indexOf already provides what i want?

Fiddle

share|improve this question
3  
It's s.indexOf(d) -- swap the variables around. – Jon Jan 17 at 12:54
1  
Also note that if you need to support older browsers, Array.prototype.indexOf may not be supported. There's a polyfill on MDN. – James Allardice Jan 17 at 12:55
thanks @Jon ! :D and also JamesAllardice – Aspiring Aqib Jan 17 at 14:59

closed as too localized by Jon, jAndy, James Allardice, cpilko, ithcy Jan 17 at 15:26

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

3 Answers

up vote 3 down vote accepted

You should be calling the method on the object you wish to search not on the item which you wish to search for, s.indexOf(d) in your case

share|improve this answer

There are indexOf functions both for strings and arrays. You applied it on the string, and checked whether the stringification of the array is contained in it - you get no error, but does not work. You have to do it the other way round to check whether the string is an item of the array:

s.indexOf(d) != -1
share|improve this answer

Another way to approach this problem is to use the hash map property of JavaScript objects:

var d = "Hello";
var s = {"Heart": 1, "David": 1, "Foo": 1, "Hello": 1};
if (s[d]) {
    alert("Found Hello");
}
share|improve this answer
There isn't a single array in this answer. (Unless you count strings as being arrays of characters) – Cerbrus Jan 17 at 12:59
@Cerbrus Maybe not with the {} object notation, but JavaScript arrays are string hash maps: i.imgur.com/HZEqF.png – Overv Jan 17 at 13:01
That returns true because you're declaring arr like arr = [], so as array. Array.isArray(s); (s from your answer) returns false, though. Because it's an Object. – Cerbrus Jan 17 at 13:06
Yes, but an object in this case is the only way to express the same thing in a single statement. – Overv Jan 17 at 13:08
Good job on replacing the word "arrays" with "objects". Now, technically, there is no "hash map property of JavaScript objects", it would be more accurate to say that objects are hash maps. But that's nitpicking... – Cerbrus Jan 17 at 13:15

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