const array = ["A","G","B","F","D"]
array.sort() //['A', 'B', 'D', 'F', 'G']
const array_2 = [
{
id:1,
text:"D"
},
{
id:2,
text:"C"
},
{
id:3,
text:"A"
},
{
id:1,
text:"B"
},
]
array_2.sort((a,b)=>{
if(a.text>b.text){
return 1;
}
if(a.text<b.text){
return -1;
}
return 0;
})
//[{id: 3, text: 'A'},
//{id: 1, text: 'B'},
//{id: 2, text: 'C'},
//{id: 1, text: 'D'}]