JavaScript developers can access object properties via dot notation, square bracket notation, and destructuring. This covers the tricks of each method in depth.
The most basic way to access an object's properties is using dot notation but in certain cases that won't be the best choice or it won't even be possible. Accessing values from an object using dynamic properties and keys is possible using square bracket notation or destructuring. Destructuring, a JavaScript ES6 feature, also allows you to create aliases for values you access.
This video was inspired by this blog post: https://dmitripavlutin.com/access-obj...
Thanks Dmitri!
=====================
Code Files
=====================
https://github.com/bradydowling/read-...