I used
MyClass.prototype.myMethod1 = function(value) { this._current = this.getValue("key", function(value2){ return value2; }); };
How do I access the value of this in a callback function as shown below?
MyClass.prototype.myMethod1 = function(value) { this.getValue("key", function(value2){
source share