All about `this` in JavaScript
What is this?
It depends on the situation. Let’s look at a few common scenarios.
The global this
Outside of a function, this references the global object. In a browser environment, this is typically the window object. In this scenario, you can set pr...
joeattardi.dev7 min read