You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: 1-js/06-advanced-functions/09-call-apply-decorators/02-delay/solution.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
The solution:
1
+
A solução:
2
2
3
3
```js run demo
4
4
functiondelay(f, ms) {
@@ -11,22 +11,22 @@ function delay(f, ms) {
11
11
12
12
let f1000 =delay(alert, 1000);
13
13
14
-
f1000("test"); //shows "test" after 1000ms
14
+
f1000("teste"); //exibe "teste" após 1000ms
15
15
```
16
16
17
-
Please note how an arrow function is used here. As we know, arrow functions do not have own`this`and`arguments`, so`f.apply(this, arguments)`takes `this`and`arguments`from the wrapper.
17
+
Notemos como usamos uma função de seta neste exemplo de código. Como sabemos, as funções de seta não possuem`this`e`arguments` próprios, então`f.apply(this, arguments)`recebe o `this`e`arguments`da função envolvente.
18
18
19
-
If we pass a regular function, `setTimeout`would call it without arguments and `this=window` (assuming we're in the browser).
19
+
Se passarmos uma função normal, `setTimeout`a chamaria sem argumentos e `this=window` (assumindo que estamos no navegador).
20
20
21
-
We still can pass the right `this`by using an intermediate variable, but that's a little bit more cumbersome:
21
+
Nós podemos ainda passar o `this`correto utilizando uma variável intermediária, mas isso é um pouco mais complicado:
22
22
23
23
```js
24
24
functiondelay(f, ms) {
25
25
26
26
returnfunction(...args) {
27
-
let savedThis =this; //store this into an intermediate variable
27
+
let savedThis =this; //armazenar isto numa variável intermédia
Copy file name to clipboardexpand all lines: 1-js/06-advanced-functions/09-call-apply-decorators/03-debounce/solution.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -9,5 +9,4 @@ function debounce(func, ms) {
9
9
10
10
```
11
11
12
-
A call to `debounce` returns a wrapper. When called, it schedules the original function call after given `ms` and cancels the previous such timeout.
13
-
12
+
Uma chamada à `debounce` retorna um embrulhador. Quando chamado, este agenda a chamada da função original depois de dados `ms` e cancela o tempo de espera anterior.
0 commit comments