Inside a function, I'd like to change the value of a global variable that is specified by the function's argument.
A = 1;
B = 2;
C = 3;
function myFunction(variable) {
    variable += 10;
}
myFunction(A);
myFunction(B);
myFunction(C);
I'm looking for these results:
console.log(A);   // 11 expected
console.log(B);   // 12 expected
console.log(C);   // 13 expected
I can't output the new value via a return statement because it's computed inside the callback function of a post request.
How to achieve this?
 
    