Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Last active January 16, 2020 11:32
Show Gist options
  • Save indreklasn/ae6da767f6709ab7ee3ab7afe663fcad to your computer and use it in GitHub Desktop.
Save indreklasn/ae6da767f6709ab7ee3ab7afe663fcad to your computer and use it in GitHub Desktop.
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