Tell us what’s happening:
i have gotten the highest number so far but the problem is getting an array from it and then which is what the problem demands.
Your code so far
function largestOfFour(arr) {
let biggest;
for (var i = 0; i < arr.length; i++){
let biggest = arr[i].reduce((a, b) => {
if (b > a){
return b
}
else {
return a
}
})
console.log(biggest);
}
// You can do this!
return biggest;
}
largestOfFour([[4, 5, 1, 3], [13, 27, 18, 26], [32, 35, 37, 39], [1000, 1001, 857, 1]]);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-algorithm-scripting/return-largest-numbers-in-arrays/