Skip to content

Instantly share code, notes, and snippets.

@tjukic
Created March 4, 2017 09:45
Show Gist options
  • Save tjukic/705294a5deebf4cd9766237163084507 to your computer and use it in GitHub Desktop.
Save tjukic/705294a5deebf4cd9766237163084507 to your computer and use it in GitHub Desktop.
Search by obj prop
Array.prototype.indexOfIfPropertyMatches = function(callback) {
var i = this.length;
while (i--) {
if (callback(this[i], i)) {
return i;
}
}
return -1;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment