Skip to content

Instantly share code, notes, and snippets.

@evinism
Last active October 18, 2021 06:36
Show Gist options
  • Save evinism/0e1a44d1564742a98c4056932c461bb7 to your computer and use it in GitHub Desktop.
Save evinism/0e1a44d1564742a98c4056932c461bb7 to your computer and use it in GitHub Desktop.
cjsp1
const cat = {
variant: 'hunter',
preferredPrey: 'anything',
}
const dog = {
variant: 'sniffer',
smellSkill: 'excellent'
}
const talk = {
[cat]: 'meow',
[dog]: 'woof'
};
console.log(talk[dog]); // "woof"
console.log(talk[cat]); // "woof", oh no!!!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment