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" } >
@oesterle started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Thanks!
By array, I assume you mean object? Otherwise, that works!