Hi,
I just came over a an odd situation:
I have a structure myData
var myData={
'A1':{name:'..'},
'A2':{name:'..'},
'A 3':{name:'..'}
};
I can call myData.A1 as well as myData.A2 but of course myData.A 3 fails because of the space.
Is it possible that Espruino interpreter should reject attributes containing spaces in the name?
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.
Hi,
I just came over a an odd situation:
I have a structure myData
I can call
myData.A1
as well asmyData.A2
but of coursemyData.A 3
fails because of the space.Is it possible that Espruino interpreter should reject attributes containing spaces in the name?