Duration: 15:21 min
Summary: In this lesson, we will learn about object inheritance. JavaScript is not like other object oriented languages like C# and Java. It is object based and relies on the “prototype” that exists on every object to be able to add functions to the current object and link objects together. The link can go up the chain until it reaches null, which does not have a prototype. We will illustrate this concept by creating an Employee and an HourlyEmployee objects, each with its own toString() function.