Tell us what’s happening:
please help me to figure out what is wrong
Your code so far
function largestOfFour(arr) {
// You can do this!
var max;
var newArray = [];
for (var i = 0; i > arr.length; i++){
max = 0;
for (var j = 0; j > arr.[j].length; j++){
if (arr[i][j] > max)
max = arr[i][j];
}
newArray.push(max);
}
return newArray;
}
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/76.0.3809.100 Safari/537.36.
The (7:28) means that the unexpected token is on line 7 at position 28. If you look in the editor, you will also see that the character (unexpected token) has a red squigly line under it.
// tests completed I’m sorry, still not working. here is the whole code again:
function largestOfFour(arr) {
// You can do this!
var max;
var newArray = [];
for (var i = 0; i < arr.length; i++){
max = 0;
for (var j = 0; j < arr[j].length; j++){
if (arr[i][j] > max)
max = arr[i][j];
}
newArray.push(max);
}
return newArray;
}
largestOfFour([[4, 5, 1, 3], [13, 27, 18, 26], [32, 35, 37, 39], [1000, 1001, 857, 1]]);
I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make easier to read.
See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.
I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make easier to read.
See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.