My State in Class Component
The below given state is in my class component.
I Need to add following example dynamic objects inside the starttime Array.
this.state = {
frequency: {
starttime: [],
},
};
example objects which are given below.
{time:"20:15",timezone:"IST"},
{time:"01:30",timezone:"UST"}
The above objects were comes dynamically that I handled it.
My requirement is have to push these object in the starttime Array using setState
in reactjs.
expected result as below.
this.state = {
frequency: {
starttime: [{time:"20:15",timezone:"IST"},
{time:"01:30",timezone:"UST"},
{time:"13:00",timezone:"UST"},...],
},
};
Consider you have the data in a variable called
newTimes
that need to be updated asstarttime
in the state. Then below is one of the ways you can update it. You can refer here for more details about how previous state can be used while updating.If you want to remove certain elements from the
newTimes
array based on on a condition, thenArray.filter
will be handy. For simplicity I'm considering to filter out the data based ontimezone
, below is the exampleThere are different ways of removing duplicates from an array, please refer below
Array.reduce
andObject.values
Array.filter