Prototype trong javascript
Problem with creating objects with the constructor function:
Xem xét hàm constructor ở dưới đây :
function Human(firstName, lastName) {
this.firstName = firstName,
this.lastName = lastName,
this.fullName = function() {
return this.firstName + " " + this.lastName;
}
}
var person1 = new Human("Virat", "Kohli");
console.log(person1)
Hãy tạo object person1 và person2 bằng Human function constructor Human:
var person1 = new...
javascipt
May Fest
1474