// Assignment 2 - Karl Channell
// I still don't understand inheritance properly!!

function Employee () {
    this.name = "";
    this.dept = "nyu";
}

function WorkerBee () {
    this.projects = [];
}
WorkerBee.prototype = new Employee;

function SalesPerson () {
   this.dept = "sales";
   this.quota = 100;
}
SalesPerson.prototype = new WorkerBee;


console.log( "( " + Employee() + ", " + WorkerBee() + ", " + SalesPerson() + " )" );
