We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Calls a function for each entry. 🏃 📼 📦 🌔 📒
object.forEach(x, fc); // x: an object // fc: called function (v, k, x)
const object = require('extra-object'); var x = {a: 1, b: 2, c: -3, d: -4}; object.forEach(x, v => console.log(v)); // 1 // 2 // -3 // -4