Last active
May 30, 2019 23:17
-
-
Save anthonycoffey/64a6e0c329a2c44ba0ec59076d614efe to your computer and use it in GitHub Desktop.
Javascript Object Property Accessors
This file contains hidden or 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 obj = { a: 1, b: 4} | |
// dot operator | |
obj.a // 1 | |
// bracket notation | |
obj['b'] // 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment