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?
s.indexOf(d)-- swap the variables around. – Jon Jan 17 at 12:54Array.prototype.indexOfmay not be supported. There's a polyfill on MDN. – James Allardice Jan 17 at 12:55