Objective Reasoning – The Basic Javascript Object

What is an Object? In Javascript an object is simply a container or store of properties that are related to what the object is modeling. These properties can be primitive data types, other objects or functions. Here’s an example of an empty object with no properties: const furBearingTrout = {}; I’ve used object literal notation …