array-foreach
Array#forEach ponyfill for older browsers
Ponyfill: A polyfill that doesn't overwrite the native method
DESCRIPTION
Provides forEach function for older browsers, use native implememtation if exists.
It's just like
EXAMPLE
var forEach = require('array-foreach');
var result = '';
forEach(['foo', 'bar', 'baz'], function (element, index, array) {
    result += element;
});
console.log(result); // 'foobarbaz'INSTALL
via npm
Install
$ npm install --save array-foreachUse
var forEach = require('array-foreach');via bower
Install
$ bower install --save array-foreachLoad (forEach function is exported)
<script type="text/javascript" src="./path/to/bower_components/array-foreach/build/array-foreach.js"></script>Use
var result = '';
forEach(['foo', 'bar', 'baz'], function (element, index, array) {
    result += element;
});AUTHOR
LICENSE
Licensed under the MIT license.
 twada
twada