Boa tarde, estou estudando arrays e para fins de estudo, estou tentando criar um programa que verifica se uma array é igual a outra, porém não consigo entender o que está errado no meu código. Se alguém puder me ajudar :)
Código abaixo:
const numeros = [
[02, 03, 04, 07, 11, 12, 14, 16, 17, 18, 19, 20, 22, 23, 24],
[03, 04, 06, 07, 08, 09, 13, 15, 17, 19, 20, 22, 23, 24, 25]
]
const numeros2 =[
[02, 03, 04, 07, 11, 12, 14, 16, 17, 18, 19, 20, 22, 23, 24],
[03, 04, 06, 07, 08, 09, 13, 15, 17, 19, 20, 22, 23, 24, 25]
]
for (let item = 0; item < numeros.length; item++){
if (numeros[item].length == numeros2[item].length){
console.log(this.numeros[item].length);
}
}