Created
August 19, 2022 05:49
-
-
Save PhilipWee/3a5cb8ef06c4614e43cf63c7540d6390 to your computer and use it in GitHub Desktop.
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 debouncedFunction = (...args) => {return args} | |
const finalArgs = debouncedFunction("arg1","arg2","arg3") | |
//finalArgs === ["arg1","arg2","arg3"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment