Last active
January 16, 2020 11:32
-
-
Save indreklasn/ae6da767f6709ab7ee3ab7afe663fcad 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 person = { | |
name: "Indrek", | |
age: 26, | |
pets: { | |
name: "Simmo", | |
type: "cat", | |
age: 8.5 | |
} | |
} | |
if (person.name === "Indrek" && person.age === 26 && person.pets && person.pets.type === "cat") { | |
console.log("You're definitely Indrek") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment