Sort array by firstname (alphabetically) in Javascript

前端 未结 23 3040
天命终不由人
天命终不由人 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:19

    Shortest possible code with ES6!

    users.sort((a, b) => a.firstname.localeCompare(b.firstname))
    

    String.prototype.localeCompare() basic support is universal!

提交回复
热议问题