function Person(first, last, age) { this.first = first; this.last = last; this.age = age; } Person.prototype.full = function () { return this.first + " " + this.last; }; Person.prototype.until = function (year) { return year - this.age; };
-----