If we have this setup:
if (typeof(A) === 'undefined')
A = {};
A.B = new function () {
....
this.C = function () {
....
}
}
what are some standard ways of accessing the C
function from the outermost context (scope) ? I do have access to js sources so I can modify them accordingly.