Constructors

From rbachwiki
Revision as of 17:15, 6 November 2016 by Bacchas (talk | contribs)
Jump to navigation Jump to search

Function Constructor

var Person = function(name, yearOfBirth, job){
    this.name = name;
    this.yearOfBirth = yearOfBirth;
    this.job = job;
    this.calculateAge = function() {
        console.log(2016 - this.yearOfBirth);
    }
}


var john = new Person('john', 1967, 'teacher');
john.calculateAge();

Back To Top- Home - Category