Skip to content

Instantly share code, notes, and snippets.

@scriptschat
Created September 22, 2020 14:07
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/2e05488925c33b2434608cec3ba639a6 to your computer and use it in GitHub Desktop.
Save scriptschat/2e05488925c33b2434608cec3ba639a6 to your computer and use it in GitHub Desktop.
Using for of loop with an array
const fruits = ['apple', 'orange', 'kiwi', 'grapes', 'pineapple'];
for(fruit of fruits) {
console.log(fruit);
}
// Output
// apple
// orange
// kiwi
// grapes
// pineapple
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment