Skip to content

Instantly share code, notes, and snippets.

@griffinmichl
Last active May 24, 2016 23:26
Show Gist options
  • Select an option

  • Save griffinmichl/1cf669622be55e287a95d147fa2da94c to your computer and use it in GitHub Desktop.

Select an option

Save griffinmichl/1cf669622be55e287a95d147fa2da94c to your computer and use it in GitHub Desktop.
function sayHello(x) {
console.log(x)
}
const debouncedSayHello = debounce(sayHello, 100)
debouncedSayHello(1)
debouncedSayHello(2)
debouncedSayHello(3)
setTimeout(() => debouncedSayHello(4), 200)
// 3
// 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment