How does an arrow function handle the this keyword compared to a regular function?
this
Arrow functions cannot access the this keyword.
Arrow functions bind the this keyword to the global object.
Arrow functions automatically inherit the this value from the surrounding scope.
Arrow functions have their own this context.