You are reading a single comment by @oesterle and its replies. Click here to read the full conversation.
  • Thanks!

    By array, I assume you mean object? Otherwise, that works!

    >xxx = [];
    =[  ]
    >xxx["abc"] = "def";
    ="def"
    >xxx
    =[  ]
    >xxx
    =[  ]
    >xxx.abc
    ="def"
    >nnn = {}
    ={  }
    >nnn["abc"] = "def";
    ="def"
    >nnn
    ={
      "abc": "def"
     }
    > 
    
About

Avatar for oesterle @oesterle started