Debounce

Debouncing will bunch a series of sequential calls to a function into a single call to that function. It ensures that one notification is made for an event that fires multiple times.

  • Debounce 는 사용자의 모든 입력이 끝날때 API 를 호출하는 것

Throttle

Throttling will delay executing a function. It will reduce the notifications of an event that fires multiple times.

  • Throttle 은 특정 time 마다 API 를 호출하는 것