We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fdf4c3 commit b70f949Copy full SHA for b70f949
1-js/06-advanced-functions/10-bind/article.md
@@ -167,7 +167,7 @@ sayHi(); // Hello, John!
167
setTimeout(sayHi, 1000); // Hello, John!
168
169
// even if the value of user changes within 1 second
170
-// sayHi uses the pre-bound value which is reference to old user object
+// sayHi uses the pre-bound value which is reference to the old user object
171
user = {
172
sayHi() { alert("Another user in setTimeout!"); }
173
};
0 commit comments