Skip to content

Commit 6eccd9d

Browse files
Update article.md
1 parent cceb7cb commit 6eccd9d

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
@@ -72,7 +72,7 @@ setTimeout(() => user.sayHi(), 1000); // Hello, John!
7272

7373
Looks fine, but a slight vulnerability appears in our code structure.
7474

75-
What if before `setTimeout` triggers (there's one second delay!) `user` changes value? Then, suddenly, the it will call the wrong object!
75+
What if before `setTimeout` triggers (there's one second delay!) `user` changes value? Then, suddenly, it will call the wrong object!
7676

7777

7878
```js run

0 commit comments

Comments
 (0)