Skip to content

Instantly share code, notes, and snippets.

@netsuite
Created April 17, 2013 22:16
Show Gist options
  • Save netsuite/5408213 to your computer and use it in GitHub Desktop.
Save netsuite/5408213 to your computer and use it in GitHub Desktop.
ss: findById / findByName
function findById(source, id) {
for (var i = 0; i < source.length; i++) {
if (source[i].name === id) {
return source[i];
}
}
throw "Couldn't find object with id: " + id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment