Answer the question
In order to leave comments, you need to log in
How to add data to an object (react.js)?
There is an object
getInitialState: function() {
return {
dob: {
'month' : 'January',
'day' : '01',
'year' : '2015'
};
},
Answer the question
In order to leave comments, you need to log in
for example
this.setState({
dob: {
...this.state.dob,
year: '1980'
}
})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question