Skip to content

Instantly share code, notes, and snippets.

@jwdotjs
Created June 22, 2016 02:00
Show Gist options
  • Save jwdotjs/6f40b3ab79effd34497a6748262dba58 to your computer and use it in GitHub Desktop.
Save jwdotjs/6f40b3ab79effd34497a6748262dba58 to your computer and use it in GitHub Desktop.
function Person() { this.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