Language Basics JavaScript DHTML



Properties

    var aObject = {};
    
    function aObject(a,b,c,d) {
        this.myValueA = a;
        this.myValueB = b;
        this.myValueC = c;
        this.myValueD = d;
    }
    aObject["A"] = new aObject("A","C","F",2.0);
    aObject["B"] = new aObject("B","D","V",2.3);




for (var propt in aObject) {
    document.write(propt+"
");
}