*] heres where things advance and start to get a little more complicated
x] b/c of js flexiblity you will not typically use inheritance as much as you would with other languages
] EX = derive an "employee" from our Person prototype where "Employee" has the additional properties of "title" and a revised(overridden) method of "describe" which includes the employees title.
] define - function Employee(name,title){
] then include in the function body ...
1] Person.call(this, name); // adding a person object to the current object by passing it Employee and the name of the Employee passed in the arg