Created
July 27, 2020 21:49
-
-
Save oscaroceguera/ef0306354484f980ea3e8ec03249fcb8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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