24.
What does the this keyword refer to in JavaScript?
The global object
The current function
The current object
The parent object
Correct: C
The this keyword refers to the current object that the function is being invoked on. It allows you to access properties and methods within the object itself.