RKRobin Katariainrxbin.hashnode.dev·Jan 5, 2024 · 6 min readShades of 'this' in JavaScriptOverview Depending on where it is used, this behaves differently: in the global space¹, inside a regular function², within an object's method³, in an arrow function⁴, a callback function⁵, or an event handler⁶. There are nuances between strict and ...00