I am using jscript for scripting in Testcomplete.
I have a function
function A() {
return someobjReference ; //this variable contains a reference
}
function B()
{
} I need to use the object reference(someobjReference ) in function B().How can i do that?
Thanks !