We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6e0944a + 23fb044 commit 4716d10Copy full SHA for 4716d10
1-js/06-advanced-functions/09-call-apply-decorators/04-throttle/task.md
@@ -6,7 +6,7 @@ importance: 5
6
7
Create a "throttling" decorator `throttle(f, ms)` -- that returns a wrapper.
8
9
-When it's called multiple times, it passes the call to `f` at maximum once per `ms` milliseconds.
+When it's called multiple times, it passes the call to `f` at maximum once per `ms` milliseconds.
10
11
The difference with debounce is that it's completely different decorator:
12
- `debounce` runs the function once after the "cooldown" period. Good for processing the final result.
0 commit comments