Throttling is a mechanism to regulate the rate at which processing is performed
I have a code like that: var originalFunction = function() { return 'some value'; }; var debouncedFunction = _.debounce(originalFunction, 3000); console.log('debouncedFunction() result: …
javascript jquery underscore.js throttling debouncing