Skip to content

Instantly share code, notes, and snippets.

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