Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

97
Visualizações
Updating a variable during asynchronous function time out
const [value, setValue] = useState(0);
const counter = () => {
  setTimeout(() => {
    // setValue(value + 1);
    setValue((prevState) => prevState + 1);
  }, 2000);
};

counter is called when a button is pressed i.e.

<button onClick={counter}>counter</button>

Why does setValue(value + 1) update the value once if I press the button multiple times, but setValue((prevState) => prevState + 1) return the correct value relative to the amount pressed?

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

State updates are not always immediate. Using the previous value ensures that you are working with the current value at the point in time where the value is being set. Kent Dodds explains this well in this post. Bigger question might be, why are you wrapping this in a setTimeout?

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda