Skip to content

Instantly share code, notes, and snippets.

@jermspeaks
Created December 1, 2015 01:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jermspeaks/1c56022f6d3a9b326934 to your computer and use it in GitHub Desktop.
Save jermspeaks/1c56022f6d3a9b326934 to your computer and use it in GitHub Desktop.
var myObject = {
stuff: ['toys', 'animals']
};
console.log(myObject.stuff) // ['toys', 'animals']
myObject.stuff = ['other toys', 'other animals'];
console.log(myObject.stuff) // ['other toys', 'other animals'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment