I have a constructor like
constructor() {
this.state = {
item_details : {}
}
}
someFunc(next_item_key,next_item_value) {
//append this next_item_key , next_item_value pair to item_detials
}
I need to add this next_item in someFunc to my state variable item_details..
Example: My item_details will look something like this
item_details : {'abc' : 'xyz' , 'a12' : '123' }
My next_item will be like
next_item_key = 'qwerty'
next_item_value = 'pqrs'
My resultant item_details should look like
item_details : {'abc' : 'xyz' , 'a12' : '123' , 'qwerty' : 'pqrs' }
what should i write in someFunc to get this result
Use [] notation and spread operator to achieve that.
Write it like this:
Update:
Calling setState in a loop is not a good idea, better approach will be first do all calculations then update the state value in on shot.
Like this: