Skip to content

Instantly share code, notes, and snippets.

@ristaa
Created September 11, 2018 08:13
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 ristaa/b034edba5e17643e092945c3b97ef2a5 to your computer and use it in GitHub Desktop.
Save ristaa/b034edba5e17643e092945c3b97ef2a5 to your computer and use it in GitHub Desktop.
forEach helper ES6
var colors = ['red', 'yellow', 'purple'];
colors.forEach(function(color) {
console.log(color);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment