Skip to content

Instantly share code, notes, and snippets.

@jwdotjs
Created June 22, 2016 13:27
Show Gist options
  • Save jwdotjs/0d13e3355462ed0d499c1f22f161003a to your computer and use it in GitHub Desktop.
Save jwdotjs/0d13e3355462ed0d499c1f22f161003a to your computer and use it in GitHub Desktop.
function Person() {}
Person.prototype.withRelated = []
person = new Person();
person.withRelated.push(1);
console.log('1', person.withRelated);
person = new Person()
console.log('2', person.withRelated)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment