Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created January 15, 2020 12:53
Show Gist options
  • Save indreklasn/2a69e6d95a14cdbe89d42368e7a9a674 to your computer and use it in GitHub Desktop.
Save indreklasn/2a69e6d95a14cdbe89d42368e7a9a674 to your computer and use it in GitHub Desktop.
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