What is Object?
In JavaScript, an object is a collection of key-value pairs, where each key-value pair is referred to as a property.
The keys of objects can be strings or symbols, and the values can be strings, numbers, functions, or even other objec...