Skip to content

Instantly share code, notes, and snippets.

@eamon0989
Last active July 26, 2021 12:50
Show Gist options
  • Save eamon0989/9d7e2b693747268b12936a0a64832ce6 to your computer and use it in GitHub Desktop.
Save eamon0989/9d7e2b693747268b12936a0a64832ce6 to your computer and use it in GitHub Desktop.
let foo = {
bar: 1,
};
console.log(foo.bar); // 1
console.log(foo.hasOwnProperty('bar')); // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment