Skip to content

Instantly share code, notes, and snippets.

@krzysztofczernek
Created September 18, 2019 16:55
Show Gist options
  • Save krzysztofczernek/5a653367c468c61e7c2b0a6655b976a3 to your computer and use it in GitHub Desktop.
Save krzysztofczernek/5a653367c468c61e7c2b0a6655b976a3 to your computer and use it in GitHub Desktop.
const R = require('ramda')
const fastestCar = cars => {
const sorted = R.sortBy(car => car.horsepower, cars)
console.log(sorted)
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