Skip to content

Instantly share code, notes, and snippets.

@rehasantiago
Last active November 28, 2021 10:24
Show Gist options
  • Save rehasantiago/08a9e16c84cd204c054b1769371a0f4c to your computer and use it in GitHub Desktop.
Save rehasantiago/08a9e16c84cd204c054b1769371a0f4c to your computer and use it in GitHub Desktop.
let arr = [1,2,3,4,5];
arr.forEach(function(word) {
console.log(word);
});
// 1
// 2
// 3
// 4
// 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment