Created
December 1, 2015 01:13
-
-
Save jermspeaks/1c56022f6d3a9b326934 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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