Here .indexOf(), but IE <9 does not support it:
if(array.indexOf("mystring") > -1) {
}
From the same MDC documentation page , here's what to enable (before use) for IE to work as well:
if (!Array.prototype.indexOf)
{
Array.prototype.indexOf = function(elt /*, from*/)
{
var len = this.length >>> 0;
var from = Number(arguments[1]) || 0;
from = (from < 0)
? Math.ceil(from)
: Math.floor(from);
if (from < 0)
from += len;
for (; from < len; from++)
{
if (from in this &&
this[from] === elt)
return from;
}
return -1;
};
}
.indexOf() , , -1, .