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/88d3a013234cbef16439 to your computer and use it in GitHub Desktop.
Save conanak99/88d3a013234cbef16439 to your computer and use it in GitHub Desktop.
function Person(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
this.showName = function() {
console.log(this.firstName + ' ' + this.lastName);
};
}
// Khi muốn tạo object person chỉ cần gọi constructor
var psn1 = new Person('Hoang', 'Pham');
var psn2 = new Person('Hoang', 'Nguyen');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment