Access 1. Dot notation const obj = { notation: 'dot', application: { name: 'instagram', type: 'social' } obj.notation // = dot obj.application.name // = instagram obj.application.type // = social 2. Bracket notation const obj = { notat...
weensy.hashnode.dev1 min readBracket notation for accessing can also be
obj['application']['type'] // = utility
Cess
Technical writer | self-taught👩🏻💻 | Frontend Developer
Great Article chief