Hi I am beginning with javascript and I would like to sort this JSON Object by value:
aa = {Deuxième immatriculation: 2, Première immatriculation: 1, Suppression: 3}
in order to have this result
bb = {Première immatriculation: 1,Deuxième immatriculation: 2, ,Suppression: 3}
How can I do this ? Thank you