What I'm trying to achieve is the following structure for an object. Note that all properties values are constant strings:
ObjA
    ObjB
        prop1
        prop2
        prop3
    ObjC
        prop4
        prop5
    .
    .
    .
So shoud it be possible to access the properties value using the following sintax:
alert(ObjA.ObjC.pro4);
So far, I've tried something like the following without success.
    var csi = new Object();
    var cao98 = new Object();
    csi.cao98="";
    csi.cao98.rgi = "NRRGILIG";
    alert (csi.cao98.rgi);
Is it possible? I do not want to get to far on this issue since there's a lot of discussion on this theme.
 
     
     
     
    