Skip to content

Instantly share code, notes, and snippets.

@jeremiahbiard
Created June 11, 2015 03:35
Show Gist options
  • Save jeremiahbiard/7d9e64149c87d876d95c to your computer and use it in GitHub Desktop.
Save jeremiahbiard/7d9e64149c87d876d95c to your computer and use it in GitHub Desktop.
Map/Filter chaining javascript
return newReleases.filter(function(movie) {
return (movie.rating === 5.0);
}).map(function(movie) {
return movie.id;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment