Skip to content

Instantly share code, notes, and snippets.

@geomago
Last active June 18, 2020 05:03
Show Gist options
  • Save geomago/e15a0b0eb7ac7502b72f84a0a2557b99 to your computer and use it in GitHub Desktop.
Save geomago/e15a0b0eb7ac7502b72f84a0a2557b99 to your computer and use it in GitHub Desktop.
find_max_price_2
let maxPrice = cars.reduce( (prevPrice, current) => prevPrice < current.price ? current.price : prevPrice, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment