Pages

For each


Nous pouvons écrire notre proche forEach

Code


function forEach(array, action) {
  for (var i = 0; i < array.length; i++)
    action(array[i]);
}

JS Bin on jsbin.com

Code d'une bibliothèque


lodash