Sort array by firstname (alphabetically) in Javascript

前端 未结 23 3045
天命终不由人
天命终不由人 2020-11-22 11:46

I got an array (see below for one object in the array) that I need to sort by firstname using JavaScript. How can I do it?

var user = {
   bio: null,
   emai         


        
23条回答
  •  南方客
    南方客 (楼主)
    2020-11-22 12:25

    in simply words you can use this method

    users.sort(function(a,b){return a.firstname < b.firstname ? -1 : 1});
    

提交回复
热议问题