Skip to content

Instantly share code, notes, and snippets.

@scriptschat
Created September 22, 2020 12:56
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 scriptschat/1b64695b8c014a3c47b2a378847b4f37 to your computer and use it in GitHub Desktop.
Save scriptschat/1b64695b8c014a3c47b2a378847b4f37 to your computer and use it in GitHub Desktop.
Iterating using forEach loop.
const fruits = ['apple', 'orange', 'kiwi', 'grapes', 'pineapple'];
fruits.forEach(fruit => console.log(fruit));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment