Skip to content

Instantly share code, notes, and snippets.

@geomago
Last active June 18, 2020 05:04
Show Gist options
  • Save geomago/e8e89ecf64a634849d4a4a40e834fe01 to your computer and use it in GitHub Desktop.
Save geomago/e8e89ecf64a634849d4a4a40e834fe01 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