/javaScript-Objects

Practicing with objects stored in variables

Primary LanguageJavaScript

Objects and properties

According to MDN, an object is a collection of properties, and a property is an association between a name and a value. A property's value can be a function, in which case the property is known as a method. In addition to objects that are predefined in the browser, you can define your own objects.

I created objects stored in variables. This was my first introduction to writing Objects.