Skip to content

Instantly share code, notes, and snippets.

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