I have the following object:
var obj = { 'ア' : 'testing', 'ダ' : '2015-5-15', 'ル' : 123, 'ト' : 'Good' }; How do I access the values by its non-ASCII key (it's a Japanese character in this case)?
Can't use obj.ア or obj.'ア' for sure, which will give JavaScript parse error.
=>instead of:obj.アworks for me in the Chrome developer console..