Skip to content

Instantly share code, notes, and snippets.

@krzysztofczernek
Created September 18, 2019 16:53
Show Gist options
  • Save krzysztofczernek/4ccaac07ffdbc827b4a1e6166f7c4d7d to your computer and use it in GitHub Desktop.
Save krzysztofczernek/4ccaac07ffdbc827b4a1e6166f7c4d7d to your computer and use it in GitHub Desktop.
const R = require('ramda')
const fastestCar = cars => {
const sorted = R.sortBy(car => car.horsepower, cars)
const fastest = R.last(sorted)
return fastest.name
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment