Is there a way to pass an object property to a function by reference instead of by value?
ES5 properties can have getters and setters. How to pass a variable that uses the getters and setters instead of the result of the getter?
Right now I have to pass a reference to the whole object, not just the single property I want.