Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created July 26, 2019 07:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasongorman/d06fd86cf5afa01b026d9a2ec71c54d4 to your computer and use it in GitHub Desktop.
Save jasongorman/d06fd86cf5afa01b026d9a2ec71c54d4 to your computer and use it in GitHub Desktop.
search(title, artist){
return this.contents
.filter((cd) =>
cd.title == title && cd.artist == artist)[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment