Question 1
Which of the following statements is true regarding the "this" keyword in JavaScript?
"this" in an arrow function refers to the global object.
"this" inside a regular function refers to the object that owns the function.
Arrow functions do not have their own "this" and inherit it from the surrounding scope.
"this" always points to the window object in browser environments.