Skip to content

Instantly share code, notes, and snippets.

@Nathan-Nesbitt
Created May 10, 2020 20:32
Show Gist options
  • Select an option

  • Save Nathan-Nesbitt/01e89c3e82c79cdef2a92e6b1e27d0d0 to your computer and use it in GitHub Desktop.

Select an option

Save Nathan-Nesbitt/01e89c3e82c79cdef2a92e6b1e27d0d0 to your computer and use it in GitHub Desktop.
For Of Loop Example
// Create an array of fruits //
var fruits = ['Orange', 'Banana', 'Apple'];
// Loop through the values in that array
for (var fruit of fruits) {
console.log(fruit);
}
@Nathan-Nesbitt
Copy link
Copy Markdown
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment