Skip to content

Instantly share code, notes, and snippets.

@solominh
Created January 21, 2017 23:30
Show Gist options
  • Save solominh/3b803210f54498b2621c1e50ba5e9a8a to your computer and use it in GitHub Desktop.
Save solominh/3b803210f54498b2621c1e50ba5e9a8a to your computer and use it in GitHub Desktop.
function Person(name) {
this.name = name;
}
Person.prototype.staticProperty = 10;
var john = new Person('john');
console.log(john.staticProperty); // 10
john.staticProperty = 5;
console.log(Person.staticProperty) // 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment