Hi I'm giving my sample code as :
function A(){
var varD = 89
}
A.prototype = {
varA : 90
var varC = 91
}
I want to use this object A in my 3-4 scripts .All scripts are inter-related and this object A is declared outside window.onload method. I want to add other variables to object A I want to access varA , varB, varC in all my scripts and change them when needed. How can I achieve these functionality.
Thanks in advance !!
