javascript pour ... de boucle pour itérer sur le tableau multidimensionnel
let studentsData = [['Jack', 24], ['Sara', 23],];
for (let i of studentsData) {
for (let j of i) {
console.log(j);
}
}
SAMER SAEID