1 2 3 4 5 6 7 8 9 10 11 12 13
| array.forEach(function(currentValue, index, arr), thisValue); array.every(function(currentValue, index, arr), thisValue); array.some(function(currentValue, index, arr), thisValue); arr.filter(function(currentValue, index, arr), thisArg); arr.map(function(currentValue, index, arr), thisArg); array.reduce(function(total, currentValue, currentIndex, arr), initialValue); array.reduceRight() //ES6 arr.find(function(currentValue, index, arr), thisArg) arr.findIndex(function(currentValue, index, arr), thisArg) array.keys(); array.values(); array.entries();
|