frontend-challenges icon indicating copy to clipboard operation
frontend-challenges copied to clipboard

20 - throttle

Open marks0351 opened this issue 1 year ago • 0 comments

index.js

export function throttle(cb, delay = 250) {
  var canInvoke = true;
  // your answer here
  return (args)=>{
    if(canInvoke){
          canInvoke = false
          setTimeout(()=>{
              cb(args)
              canInvoke = true;
          }, delay)
    }

  }
}

marks0351 avatar Feb 29 '24 12:02 marks0351