Skip to content

Instantly share code, notes, and snippets.

@sholsinger
Created February 9, 2011 22:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sholsinger/819521 to your computer and use it in GitHub Desktop.
Save sholsinger/819521 to your computer and use it in GitHub Desktop.
Detect existence of Mozilla's indexOf Array extension and implement if not available.
if(Array.prototype.indexOf === undefined)
{
Array.prototype.indexOf = function(val)
{
for (var i = 0; i < this.length; i++)
{
if(this[i] == val)
return i;
}
return -1;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment