This content originally appeared on DEV Community and was authored by SnowBit
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!
- Follow me on Twitter - @codewithsnowbit
- Subscribe me on YouTube - Code With SnowBit
This content originally appeared on DEV Community and was authored by SnowBit
SnowBit | Sciencx (2022-01-12T09:20:06+00:00) Easiest way return largest numbers in arrays – Daily JavaScript #6. Retrieved from https://www.scien.cx/2022/01/12/easiest-way-return-largest-numbers-in-arrays-daily-javascript-6/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.