I'm populating some fields using JSON. The keys I load are all camel cased and look something like the below...
{
"ThisIsAnother": {},
"ThisIsAnExample": {}
}
I'm pulling them back fine, but I need to format them to make them correct, something like
{
"This Is Another": {},
"This Is An Example": {}
}
Is this possible with JS or should I format my JSON in another way?