Skip to content

Instantly share code, notes, and snippets.

@zachgoll
Created December 24, 2020 23:39
Show Gist options
  • Select an option

  • Save zachgoll/195c7d6e31371ac4dd0c57e50997c048 to your computer and use it in GitHub Desktop.

Select an option

Save zachgoll/195c7d6e31371ac4dd0c57e50997c048 to your computer and use it in GitHub Desktop.
const simpleObject = { myVariable: 'some value' };
// Using dot notation to access property value
console.log(simpleObject.myVariable);
// Using bracket notation to access property value
console.log(simpleObject['myVariable']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment