Skip to content

Instantly share code, notes, and snippets.

@brendanashworth
Created October 19, 2014 06:19
Show Gist options
  • Save brendanashworth/32b1f0f81fe5e6b42977 to your computer and use it in GitHub Desktop.
Save brendanashworth/32b1f0f81fe5e6b42977 to your computer and use it in GitHub Desktop.
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