To refer to the current object instance. Frame the concept in practical terms so you can explain it during interview discussion.
'this' is used to access the current object instance's fields and methods. In an e-commerce system, when an instance of `Customer` calls a method, 'this' refers to that specific `Customer` object, allowing for object-specific operations.
Additional Notes
Why does ‘this’ in object-oriented programming matter in this design?