Skip to content

Instantly share code, notes, and snippets.

@thejh
Created April 11, 2011 19:48
Show Gist options
  • Save thejh/914180 to your computer and use it in GitHub Desktop.
Save thejh/914180 to your computer and use it in GitHub Desktop.
var find = function(obj, id) {
if(id !== undefined) {
var results;
if(obj.id === id) {
results.push(obj);
}
return results;
}
return obj;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment