eggheadio-github / stack-overflow-copy-paste

Utility functions copy/pasted (and modified slightly) from Stack Overflow
441 stars 606 forks source link

Can we add a largest function #228

Closed AkashRajpurohit closed 5 years ago

AkashRajpurohit commented 5 years ago

I wanted to add a largest function which will return the largest value in the array

const array = [290,452,575,235]
const largestItem = largest(array) // 575
AkashRajpurohit commented 5 years ago

The stackoverflow link would be this: https://stackoverflow.com/a/33498918/9713990

kentcdodds commented 5 years ago

Sounds great!