Created
April 26, 2019 06:11
-
-
Save Tocacar/31b35288d6a0a9838dd9f6a862473ee8 to your computer and use it in GitHub Desktop.
This file contains 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
for (let i = 0; i < people.length; i++) { | |
console.group('person:' + people[i].name); | |
console.group('pets'); | |
for (let j = 0; j < people[i].pets.length; j++) { | |
console.log(people[i].pets[j]); | |
} | |
console.groupEnd(); | |
console.groupEnd(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment