- A the global object
- B the function itself
- C the object that the function is a property of
- D the object that the function is called on
- Share this MCQ
Answer:
A
Share this MCQ
In this case, the greet
function is an arrow function, which means that the this keyword is not dynamically bound to the object that the function is called on.
Instead, it refers to the value of this in the surrounding context, which in this case is the global object.
Share this MCQ