Understanding Objects in JavaScript
What are Objects?
Objects are one of the 8 data types provided by JavaScript.
It is a non-primitive data type.
It is mutable.
It contains key-value pairs.
Syntax:
{
key: value,
}
How to create an
jaspreet-sharma.hashnode.dev3 min read