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/10-bind/article.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ La sintassi di base è la seguente:
104
104
let boundFunc =func.bind(context);
105
105
```
106
106
107
-
Il risultato di `func.bind(context)` è un "exotic object", una particolare simil-funzione richiamabile come una normale funzione e che passa in maniera trasparente la chiamata a `func` impostando `this=context`.
107
+
Il risultato di `func.bind(context)` è un "exotic object", una particolare funzione richiamabile come una normale funzione e che passa in maniera trasparente la chiamata a `func` impostando `this=context`.
108
108
109
109
In altre parole, chiamare `boundFunc` è come chiamare `func` con `this` fisso.
0 commit comments