"this" reference
How to get and use the "this" parameter from Java
BasicTypes.addTwoInts.implementation = function (var1,var2) {
console.log("the method is being called");
return this.addTwoInts(var1,var2);
}Last updated
How to get and use the "this" parameter from Java
BasicTypes.addTwoInts.implementation = function (var1,var2) {
console.log("the method is being called");
return this.addTwoInts(var1,var2);
}Last updated