Array.prototype.forEach Description: Exécute une fonction sur chaque élément du tableau (0 à arr.length-1) Syntaxe: undefined anArray.forEach(Function callback) undefined Array.prototype.forEach.call(Object o, Function callback) Exemples: [1,2,3].forEach(function(el) { console.log(el); }) // affiche 1, 2, 3 à la console Navigateurs: Mozilla: [[Array.forEach]](Object o, Function callback)