JavaScript Objects - Object Creation Functions, Inheritance, Properties, Methods, Instantiation

When it comes to JavaScript Objects, objects have properties. A car in person is an object and it many properties such as weight and color. Through methods you can add or remove properties how ever you want to! Click the button below and you'll display a code that is assigned to four simple values, BMX, Dodge, Toyota, and Ford, but only one will be shown. This also uses inheritance to use the this statement. Inheritance is when you use an object refrence. It allows a great deal of code reuse.

Javascript objects are variables containing multiple valvues instead of just one. you can define and create a single object using object literal or new. Or you can define a constructor and create objects of the constructed type.

Methods are actions that can be preformed on objects, much like a function definition. Click below to trigger a method that will take a message in lower case in JavaScript and UpperCase the message.