How to Access, Add, Modify and Delete a property from JavaScript object
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...
