Skip to content

Instantly share code, notes, and snippets.

@edgarMejia
Created April 3, 2019 13:31
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 edgarMejia/c4626494d901f7b7f82deba4938fad4f to your computer and use it in GitHub Desktop.
Save edgarMejia/c4626494d901f7b7f82deba4938fad4f to your computer and use it in GitHub Desktop.
var array1 = ['a', 'b', 'c'];
array1.forEach(function(element) {
console.log(element);
});
// expected output: "a"
// expected output: "b"
// expected output: "c"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment