UNPKG

194 BJavaScriptView Raw
1function Person(firstName, lastName) {
2 this.firstName = firstName;
3 this.lastName = lastName;
4}
5
6Person.prototype.getFullName = function() {
7 return this.firstName + ' ' + this.lastName;
8};