I want access all information using Nested loop.
for(i=0; i<employees.length; i++){
for(j=0; j<employees.length; j++){
console.log(employees[i][j].name);
}
}
Uncaught TypeError: Cannot read properties of undefined (reading ‘name’) at func.html:41:40
2