Skip to content

Instantly share code, notes, and snippets.

@mattn9x
Created July 2, 2017 06:55
Show Gist options
  • Save mattn9x/ff6bd17765450699d0c22eb542623be8 to your computer and use it in GitHub Desktop.
Save mattn9x/ff6bd17765450699d0c22eb542623be8 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);
}
}
var psn1 = new Person('manh', 'nguyen');
psn1.showName(); // I'm manh- nguyen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment