MCQ
What is the purpose of the `this` keyword in JavaScript?
JavaScript
A Refers to the current object
B Refers to the global object
C Refers to the parent object
D All of the above depending on context
Explanation

The value of 'this' depends on how a function is called (execution context).