Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created March 15, 2019 09:46
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/443f7206b11dd3e3586b6691048f19c2 to your computer and use it in GitHub Desktop.
Save jasongorman/443f7206b11dd3e3586b6691048f19c2 to your computer and use it in GitHub Desktop.
const {rating, rate, summarize} = require("./book");
const booksWithRating = (number, books) => {
return books.filter((book) => rating(book) == number);
}
module.exports = booksWithRating;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment