Created
January 1, 2021 17:02
-
-
Save zachgoll/78e291dc58aecd41d6bb2781338a88d2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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