Bug fix, level 2
Ето решение ако някой се чуди как става на втора задача от Simulating OOP домашната
"use strict"; var Person = (function() { function Person(firstName, lastName) { this._firstName = firstName; this._lastName = lastName; return this; } Person.prototype = { get fullName() { return this._firstName + ' ' + this._lastName; }, set fullName(name) { var names = name.split(' '); this._firstName = names[0].trim(); this._lastName = names[1].trim(); } } return Person; })();
Да, ще го пробвам така!