Skip to content

Instantly share code, notes, and snippets.

@19h47
Created June 15, 2017 13:03
Show Gist options
  • Save 19h47/9cc05efbacc202fdd987c89b8bbf3b97 to your computer and use it in GitHub Desktop.
Save 19h47/9cc05efbacc202fdd987c89b8bbf3b97 to your computer and use it in GitHub Desktop.
Create an array with largest number from sub array
function largestNumberOfArrays(array) {
return array.map( function (subArray){
return subArray.reduce( function (previous, current) {
return (current > previous) ? current : previous;
});
});
}
// Used
largestOfFour([[4, 5, 1, 3], [13, 27, 18, 26], [32, 35, 37, 39], [1000, 1001, 857, 1]]);
// return [5, 27, 39, 1001]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment