Glossary coding Term Page

Throttle

A limiter that allows only one call per fixed interval so bursts cannot overwhelm the UI t

throttle #coding#javascript
Korean version

Related Concepts

Core Idea

Throttle is A limiter that allows only one call per fixed interval so bursts cannot overwhelm the UI thread. It usually makes the most sense alongside Microtask, Debounce, Passive listener.

Why It Matters Here

Mathbong reuses this term across javascript posts as shared vocabulary.

Posts Mentioning This Concept