Skip to content

Instantly share code, notes, and snippets.

@chrismear
Created August 2, 2009 12:52
Show Gist options
  • Save chrismear/160071 to your computer and use it in GitHub Desktop.
Save chrismear/160071 to your computer and use it in GitHub Desktop.
Array.prototype.indexOf = function(objectToFind) {
var i;
var l = this.length;
for (i = 0; i < l; i++) {
if (this[i] === objectTofind) {
return i;
}
}
return -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment