I am using a dynamic key that is a series of numbers. Because you have to double quote numbers that are keys in JSON, is there any difference between using a dynamic key that is a number turned to a string versus an underscored number that's a string?
Basically, the difference of converting a number to a string versus concatenating it with an underscore (which turns it to a string).
I DOESN'T seem like there is a difference, however, I'd like to ask this question to everyone because sometimes an unexpected difference does turns up.
{ "1" : "some content",
"2" : "some more content"
}
versus
{ _1 : "some content",
_2 : "some more content"
}
Thanks.