Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 12, 2022 09:20 am GMT

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]]))

This was a quick article, I hope it helped you

Thank you for reading, have a nice day!


Original Link: https://dev.to/codewithsnowbit/easiest-way-return-largest-numbers-in-arrays-daily-javascript-6-53ek

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To