Dot vs Bracket object notation in Javascript
Originally posted here!
Consider this object,
const Person = {
name: "John",
age: 23,
email: "john@example.com",
};
We can access this object's properties using the dot notation and bracket notation.
Dot Notation - .
Let's access the name pro...
melvingeorge-me.hashnode.dev3 min read