Created
July 14, 2020 13:21
-
-
Save jsuryahyd/c5c8ab3a13ab4b8949a1310531994272 to your computer and use it in GitHub Desktop.
Some utils for frontend
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
const myInput = document.getElementById("myInput"); | |
function helloInput() { | |
console.log( "You typed:", myInput.value ); | |
} | |
myInput.addEventListener( | |
"keyup", | |
debounce( helloInput, 1000 ) | |
); | |
*/ | |
function debounce( callback, delay ) { | |
let timeout; | |
return function() { | |
clearTimeout( timeout ); | |
timeout = setTimeout( callback, delay ); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment