Skip to content

Instantly share code, notes, and snippets.

@Fenil265
Created April 27, 2019 04:50
Show Gist options
  • Save Fenil265/4c52a169f05f87f8a7b86dd853128db9 to your computer and use it in GitHub Desktop.
Save Fenil265/4c52a169f05f87f8a7b86dd853128db9 to your computer and use it in GitHub Desktop.
var jsonSearch = function(json_array,needle){
return json_array.map(function(d) { return d[Object.keys(needle)[0]]; }).indexOf(needle[Object.keys(needle)[0]])
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment