Skip to content

Instantly share code, notes, and snippets.

@st3v3nhunt
Created August 8, 2011 21:57
Show Gist options
  • Save st3v3nhunt/1132857 to your computer and use it in GitHub Desktop.
Save st3v3nhunt/1132857 to your computer and use it in GitHub Desktop.
Using forEach to iterate over an array
[1,2].forEach(function (a, b, c) {
console.log('printing: ' + a);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment