Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

153
Views
How do i update object in redux

I would like to update an object in the middle of processing redux I need to check if this is first time for a function.

here is my code.

const initialState = {
  table: [],
  timer: 0,
  result: "",
  gameState: false,
  openedCount: 0,
  isFirst: true
};

what I tried

if(state.isFirst) {
   state.isFirst = false;
}

How do I update like that in redux? just want to update for isFirst not returning state.

I will return { ...state, table: newArray }

I would really appreciate your help thanks for reading my question.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

you can write this condition :

if(state.isFirst) {
   state.isFirst = false;
}

in each switch case : and update your state accordingly .

For example :

const initialState = {
  table: [],
  timer: 0,
  result: "",
  gameState: false,
  openedCount: 0,
  isFirst: true
};
const Reducer(state=initialState,action)=>{
   switch(action.type){
      case "first" : 
           if(state.isFirst) {
              state.isFirst = false;
              // update the new state
           }       
      case "second" : 
           if(state.isFirst) {
              state.isFirst = false;
              // update the new state
           }   
      default : return;        
   }
}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!