Réponse

thisList.foreach(value => { console.log(value) });

Colonne
Explication

The method forEach needs a function in its parameter. It's called a callback.

Question

syntax - show all of the values of an array (named thisList) using the method forEach (arrow)

Thématique