Created
January 15, 2020 12:53
-
-
Save indreklasn/2a69e6d95a14cdbe89d42368e7a9a674 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: 10, | |
} | |
// ERROR: "TypeError: dogs.map is not a function" | |
// Won't work since map can only called on arrays. | |
dogs.map(dog => console.log(dog)) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment