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}
});

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i foreach

    Weekly Downloads

    1,902,811

    Version

    2.0.6

    License

    MIT

    Unpacked Size

    8.73 kB

    Total Files

    7

    Last publish

    Collaborators

    • manuelstofer