1 2 3 4 5 6 7 8 9
function debounce(fn, delay) { let timerId = null return function (...args) { clearTimeout(timerId) timerId = setTimeout(() => { fn.apply(this, args) }, delay) } }