top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is Debounce in angular 2?

0 votes
382 views
What is Debounce in angular 2?
posted May 25, 2018 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Debouncing is a form of rate-limiting: it prevents rapid-firing of events. You can use this to throttle calls to an autocomplete API: call a function multiple times and it won't get called more than once during the time interval you specify.

answer Jun 11, 2018 by Aarati Mahajan
...