Skip to content

Instantly share code, notes, and snippets.

@glocore
Created September 27, 2017 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glocore/3378440b6eab8c912baed51f4b918f09 to your computer and use it in GitHub Desktop.
Save glocore/3378440b6eab8c912baed51f4b918f09 to your computer and use it in GitHub Desktop.
debounce function example
function greet() {
console.log('hello')
}
var debouncedFunction = _.debounce(greet, 500)
window.addEventListener('scroll', debouncedFunction)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment