Photo by chuttersnap on Unsplash

Throttling and Debouncing in JavaScript

Are you excessively invoking functions and hampering performance?

Jhey Tompkins
codeburst
Published in
6 min readFeb 3, 2015

--

Tackling performance often crops up in JavaScript applications.

Throttling and debouncing give us control over the rate at which a function is called. They are need to know techniques for any web developer. They are especially useful when we are dealing with…

--

--