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: tutorials/learn-js.org/en/Function Context.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
@@ -1,7 +1,7 @@
1
1
Tutorial
2
2
--------
3
3
4
-
Functions in JavaScript run in a specific context, and using the `this`variable we have access to it.
4
+
Functions in JavaScript run in a specific context, and using the `this`keyword we have access to it.
5
5
6
6
All standard functions in the browser run under the Window context. Functions defined under an object or a class (another function) will use the context of the object it was created in. However, we can also change the context of a function at runtime, either before or while executing the function.
0 commit comments