Skip to content

Commit 7aed099

Browse files
pasor1Dorin-David
andauthored
Update 1-js/06-advanced-functions/10-bind/article.md
Co-authored-by: Dorin-David <70648503+Dorin-David@users.noreply.github.com>
1 parent 345dffc commit 7aed099

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/10-bind/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ La sintassi di base è la seguente:
104104
let boundFunc = func.bind(context);
105105
```
106106

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`.
108108

109109
In altre parole, chiamare `boundFunc` è come chiamare `func` con `this` fisso.
110110

0 commit comments

Comments
 (0)