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

205
Views
Debounce function doesn not work in React

I'm trying to implement debounce when a user types in an input field in React.

 <TextField
    onChange={handleUsername}
 />

Input handler:

const handleTwitterUsername = (value: any) => {
    console.log({ value })
    debounce(() => {
      // setUserData({ ...userData, username: value })
      console.log('debounce value', value)
    })
  }

Debounce function:

const debounce = (cb: any, delay = 1000) => {
    let timeout: any
    return (...args: any[]) => {
      clearTimeout(timeout)
      timeout = setTimeout(() => {
        cb(...args)
      }, delay)
    }
  }

When I start typing, I get logs of value but there are no logs of debounce value. Debounce doesn't seem to work.

What am I doing wrong?

about 4 years ago · Juan Pablo Isaza
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!