DEV Community

Cover image for Easiest way return largest numbers in arrays - Daily JavaScript #6
Dhairya Shah
Dhairya Shah

Posted on • Originally published at codewithsnowbit.hashnode.dev

3

Easiest way return largest numbers in arrays - Daily JavaScript #6

Hello 👋,
It is very easy to do 🙂

function largestNumber(arr) {
    // You can do this!
    const largest = [];
    for (let i = 0; i < arr.length; i++) {
        largest.push(Math.max(...arr[i]));
    }
    return largest;
  }

  console.log(largestNumber([[105, 35, 63, 89], [130, 270, 128, 216], [312, 335, 357, 399], [1000, 1001, 857, 1]]))
Enter fullscreen mode Exit fullscreen mode

This was a quick article, I hope it helped you


Thank you for reading, have a nice day!

Top comments (1)

Collapse
 
jonrandy profile image
Jon Randy 🎖️ • Edited

A less verbose way would be:

const largestNumbers = arrs => arrs.map(arr => Math.max(...arr))
Enter fullscreen mode Exit fullscreen mode

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay