foreach
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/foreach package

2.0.6 • Public • Published

foreach

CDNJS

Iterate over the key value pairs of either an array-like object or a dictionary like object.

browser support

API

foreach(object, function, [context])

var each = require('foreach');

each([1,2,3], function (value, key, array) {
    // value === 1, 2, 3
    // key === 0, 1, 2
    // array === [1, 2, 3]
});

each({0:1,1:2,2:3}, function (value, key, object) {
    // value === 1, 2, 3
    // key === 0, 1, 2
    // object === {0:1,1:2,2:3}
});

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.6
    1,346,402
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 2.0.6
    1,346,402
  • 2.0.5
    10,907,585
  • 2.0.4
    347,152
  • 2.0.3
    92
  • 2.0.2
    85
  • 2.0.1
    95
  • 2.0.0
    86
  • 1.3.3
    84

Package Sidebar

Install

npm i foreach

Weekly Downloads

1,704,146

Version

2.0.6

License

MIT

Unpacked Size

8.73 kB

Total Files

7

Last publish

Collaborators

  • manuelstofer