Skip to content

Instantly share code, notes, and snippets.

@zachgoll
Created January 1, 2021 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zachgoll/78e291dc58aecd41d6bb2781338a88d2 to your computer and use it in GitHub Desktop.
Save zachgoll/78e291dc58aecd41d6bb2781338a88d2 to your computer and use it in GitHub Desktop.
const objectVariable = {
property1: 'i am property 1';
property2: 'i am property 2';
property3: [20, 30, 40];
};
console.log(objectVariable.property3[2]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment