Réponse

for(let i = 0; i < goodTable.length; i++){ console.log(t[i]) }

Colonne
Explication

i starts at zero and increases by 1 until the condition of i < t.length is attained

Question

syntax - show all of the values of an array (named goodTable) using the for loop

Thématique