JavaScript question detail
What are the different ways to access object properties
There are 3 possible ways for accessing the property of an object.
- Dot notation: It uses dot for accessing the properties
objectName.property;
- Square brackets notation: It uses square brackets for property access
objectName["property"];
- Expression notation: It uses expression in the square brackets
objectName[expression];