Forum Discussion
- joeljons
Staff
Both syntaxes are accepted. We changed the way it was generated to the latter in order to deal with the case of keys starting with a dot. (For example $['teachers'][0]['.hours']) The change was done in 1.9.0.
from this syntax:
$.teachers[0].hours
to this syntax:
$['teachers'][0]['hours']
Regards
/N
Both syntaxes are accepted. We changed the way it was generated to the latter in order to deal with the case of keys starting with a dot. (For example $['teachers'][0]['.hours']) The change was done in 1.9.0.