Answer the question
In order to leave comments, you need to log in
What is the 2nd line for, this.fullName = fullName;?
function User(fullName) {
this.fullName = fullName;
Object.defineProperties(this, {
firstName: {
get: function() {
return this.fullName.split(' ')[0];
},
set: function(newFirstName) {
this.fullName = newFirstName + ' ' + this.lastName;
}
},
lastName: {
get: function() {
return this.fullName.split(' ')[1];
},
set: function(newLastName) {
this.fullName = this.firstName + ' ' + newLastName;
}
}
});
}
var vasya = new User("Василий Попкин");
// чтение firstName/lastName
alert( vasya.firstName ); // Василий
alert( vasya.lastName ); // Попкин
// запись в lastName
vasya.lastName = 'Сидоров';
alert( vasya.fullName ); // Василий Сидоров
Answer the question
In order to leave comments, you need to log in
var vasya = new User("Василий Попкин"); // создется новый оъект класса "User" при этом в конструттор передается параметр "Василий Попкин"
function User(fullName) {
this.fullName = fullName; // этот параметр записывается в поле объекта
// ...
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question