Hi!
I was wandering… If I’ve got a getter method, say a(), that returns the private variable _a. Obviously from outside the class I call instanceOfClass.a. But from inside the class, should I use the getter or directly _a? Suppose I’m writing a method that uses _a: should I use _a or a? var b = a; or var b = _a?
Maybe for performance reasons it’s better to directly access _a? Or since there’s a getter a(), it’s a good practice using always and only the getter?
:write: