Skip to content

Instantly share code, notes, and snippets.

@rashid327
Created February 26, 2020 05:45
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 rashid327/baec5c1d2b540d1654e7d250a60e7822 to your computer and use it in GitHub Desktop.
Save rashid327/baec5c1d2b540d1654e7d250a60e7822 to your computer and use it in GitHub Desktop.
Array.prototype.forEach()
const array1 = ['a', 'b', 'c'];
array1.forEach(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