I'm consuming a JSON, and I want to use the keys of this JSON as a select's options, however the nomenclature is in camelCase and no accents, eg
"destaques": [
{
"fornecedoresCompany": [
{
"5OouMaisFuncionarios": "value..."
}
]
},
]
Is there a problem if I use it as follows?
"Destaques": [
{
"Fornecedores Company": [
{
"5O ou Mais Funcionários": "value..."
}
]
},
]
If it is not correct to use this way, is there any other solution? With javascript? I need to use the keys as an option to be dynamic, it's no use doing only a validation in the code comparing and changing the string.