Last active
January 15, 2020 12:46
-
-
Save indreklasn/648c868496224698a74cee86970ed79b 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
const dogs = [ | |
{ name: "Sam", age: 2, owner: "Jack"}, | |
{ name: "Simon", age: 8, owner: "Trevor"} | |
] | |
// DO | |
dogs.map(dog => console.log(dog)) | |
// DON'T | |
for (let dog of dogs) { | |
console.log(dog) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment