Skip to content

Instantly share code, notes, and snippets.

@bradurani
Last active September 17, 2015 04:58
Show Gist options
  • Save bradurani/45ead05eda8907338f33 to your computer and use it in GitHub Desktop.
Save bradurani/45ead05eda8907338f33 to your computer and use it in GitHub Desktop.
Before Function Injection
function tacoRank(t){
...
}
function findBestTacos(restaurants) {
return restaurants.reduce((acc, next) => { return acc.concat(next.tacos) }, [])
.sort((a, b) => { tacoRank(a) - tacoRank(b) })
.slice(0, 10);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment