I would like to sort the names of data
of states in ascending order. How do I do this?
function retornaEstados()
{
var opcaoCadastro = "";
$.ajax({
url: urlBase + "estado",
method: 'GET'
}).success(function(retorno)
{
retorno.data.forEach(function(item)
{
opcaoCadastro = $("<option value=" + item.estado_id + ">" + item.nome + "</option>");
$(".estadoendereco").append(opcaoCadastro);
});
}).error(function(data)
{
console.log(data);
});
}