It clarifies which variables are fields of the class.
Using 'this' makes it explicit that a variable is a class field, improving readability. For a class `Order` with a field `quantity`, using `this.quantity` in methods distinguishes it from local variables, aiding those reading the code to understand the scope immediately.
Additional Notes
How does ‘this’ improve code readability in a class?