Вы можете сделать методы, чтобы перенастроить значение, а затем использовать this.calculateAge()
в методе для получения значения.
var Person = function(name, yearOfBirth, job) {
this.name = name;
this.yearOfBirth = yearOfBirth;
this.job = job;
this.calculateAge = function() {
return 2018 - this.yearOfBirth;
};
this.retirementAge = function() {
return 66 - this.calculateAge();
}
};
var john = new Person("John", 1998, 'teacher');
console.log(john.retirementAge());
console.log(john.calculateAge());