Skip to content

Instantly share code, notes, and snippets.

@oscaroceguera
Created July 27, 2020 21:49
Show Gist options
  • Save oscaroceguera/ef0306354484f980ea3e8ec03249fcb8 to your computer and use it in GitHub Desktop.
Save oscaroceguera/ef0306354484f980ea3e8ec03249fcb8 to your computer and use it in GitHub Desktop.
// 1. Demonstrate all the different ways to iterate the below array
const myArray = [1, 2, 3, 4, 5, 6];
// 2. Demonstrate all the different ways to iterate the keys of
// the below object
const myObject = { x: 1, y: "hi" };
// 3. Repeat #2, demonstrate different ways to iterate
// the values of "myObject"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment