Skip to content

Instantly share code, notes, and snippets.

@gaalha
Created April 3, 2019 13:31
Show Gist options
  • Save gaalha/c4626494d901f7b7f82deba4938fad4f to your computer and use it in GitHub Desktop.
Save gaalha/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