Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
let array = [1, 2, 3, 4, 5];
Array.prototype.foo = function () { }
for (let item of array) {
console.log(item);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment