• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

95
Views
Return Largest Numbers in 3D Array

What approach is best for returning an array of max numbers for this array in JS?

[[[1,2,4],[3,4,6]],[[33,55,66],[99,4,55]]]

I want the result to be [4,6,66,99]

about 3 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Use a nested map and the spread operator with max.

a=[[[1,2,4],[3,4,6]],[[33,55,66],[99,4,55]]];
document.write(a.map((a)=>a.map((a)=>Math.max(...a))));

about 3 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error