Skip to content

Instantly share code, notes, and snippets.

@hrkd
Last active December 18, 2015 23:49
Show Gist options
  • Save hrkd/5864245 to your computer and use it in GitHub Desktop.
Save hrkd/5864245 to your computer and use it in GitHub Desktop.
indexOfを実装していないブラウザ用拡張
if(!Array.indexOf){
Array.prototype.indexOf = function(target,index){
if(isNaN(index)){
index = 0;
}
for(var i = index; i < target.length; i++){
if(this[i] === target){
return i;
}
}
return -1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment