frontend-challenges
frontend-challenges copied to clipboard
20 - throttle
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)
}
}
}