function Person(firstName, lastName) { | |
this.firstName = firstName; | |
this.lastName = lastName; | |
} | |
Person.prototype.love = function() { console.log('XXX') }; | |
var otherPerson = new Person('Hoang', 'Pham'); // object này có prototype là Person.prototype | |
otherPerson.love(); // XXX |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment