Skip to content

Instantly share code, notes, and snippets.

@phongsakornp
Last active January 27, 2016 15:27
Show Gist options
  • Save phongsakornp/72d91befc86d9e1de5e8 to your computer and use it in GitHub Desktop.
Save phongsakornp/72d91befc86d9e1de5e8 to your computer and use it in GitHub Desktop.
#javascript
# http://debugmode.net/2013/02/19/how-to-find-index-of-an-item-in-javascript-object-array/
var findIndexByKeyValue = function(arraytosearch, key, valuetosearch) {
for (var i = 0; i < arraytosearch.length; i++) {
if (arraytosearch[i][key] == valuetosearch) {
return i;
}
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment