i have two nested functions, i want to call the second one inside the first one but i nodejs doesn't seem to recognize it.
function Main(){
this.NestedA = function(){
console.log('Hello from A')
}
this.NestedB = function(){
console.log('Hello from B')
/* How to call NestedA from here? */
/**
* I tried
* NestedA()
* this.NestedA()
*/
}
}