Objects are the fundamental blocks of JavaScript. An object is a collection of properties, and a property is an association between a key (or name) and a value.
ReadAs we all know, JavaScript is prototypical in nature, the ES2015 inclusion of Classes made it seem somewhat object-oriented to newcomers.
Read