Created
October 19, 2014 06:19
-
-
Save brendanashworth/32b1f0f81fe5e6b42977 to your computer and use it in GitHub Desktop.
This file contains hidden or 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(age) { | |
if (age > 18) this.age = age; | |
} | |
Person.prototype.age = 18; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment