Skip to content

Instantly share code, notes, and snippets.

@superbrothers
Created June 15, 2011 13:39
Show Gist options
  • Save superbrothers/1027108 to your computer and use it in GitHub Desktop.
Save superbrothers/1027108 to your computer and use it in GitHub Desktop.
NodeList.prototype.forEach = function (fun, thisp) {
return Array.prototype.forEach.call(this, fun, thisp);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment