Skip to content

Instantly share code, notes, and snippets.

@conanak99
Last active January 13, 2016 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save conanak99/3e4fa5457fdb606932a5 to your computer and use it in GitHub Desktop.
Save conanak99/3e4fa5457fdb606932a5 to your computer and use it in GitHub Desktop.
function Person() {}
Person.prototype.firstName = 'Hoang';
Person.prototype.lastName = 'Pham';
Person.prototype.showName = function() {
console.log(this.firstName + ' ' + this.lastName);
};
// Object được tạo sẽ có sẵn các trường firstName, lastName
// và hàm showName
var psn1 = new Person();
console.log(psn1.firstName); //Hoang
psn1.showName; //Hoang Pham
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment