I hereby claim:
- I am jermspeaks on github.
- I am jermspeaks (https://keybase.io/jermspeaks) on keybase.
- I have a public key ASCfeHAl51qmH5a8a_O7JeGX7NjISQK752egXBdk1hnFtwo
To claim this, I am signing this object:
| license: mit |
I hereby claim:
To claim this, I am signing this object:
Built with blockbuilder.org
| 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']; |
| let bike = { | |
| tires: 2, | |
| pedals: 2, | |
| frame: 52 | |
| }; | |
| // Change state of tires | |
| bike.tires = 3; |
| import * as types from '../constants/ActionTypes' | |
| const initialState = [ | |
| { | |
| text: 'Use Redux', | |
| completed: false, | |
| id: 0 | |
| } | |
| ] |
Built with blockbuilder.org