Skip to content

Instantly share code, notes, and snippets.

@systemist
Created January 20, 2015 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save systemist/54a5c07e2f15f0617c91 to your computer and use it in GitHub Desktop.
Save systemist/54a5c07e2f15f0617c91 to your computer and use it in GitHub Desktop.
var items = ['a', 'b', 'c', 'd', 'e'];
console.log(items);
function logItem(item) {
console.log(item);
}
items.forEach(logItem);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment