Created
January 17, 2016 23:53
-
-
Save tcrosen/a51755fc2d7b1df0619f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Person(props) { | |
this.firstName = props.firstName; | |
this.lastName = props.lastName; | |
} | |
Person.prototype.getFullName = function() { | |
return this.firstName + ' ' + this.lastName; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment