Note: these results are received with lodash 4.17.4. Definitions Throttle — invokes function at most once per every X milliseconds. Debounce — delays invoking function until after X milliseconds have elapsed since the last time the debounced function was invoked Example Imagine you have a function processLetter, which accepts a letter and somehow makes a processing (makes a call to some API). And