如何在打字稿中对数组对象的一个​​属性值升序而另一个属性值降序进行排序?

时间:2019-06-14 06:41:34

标签: javascript angular typescript

这是数组

[  
   {  
      "contest_id":1,
      "points":10
   },
   {  
      "contest_id":2,
      "points":10
   },
   {  
      "contest_id":1,
      "points":11
   },
   {  
      "contest_id":2,
      "points":9
   },
   {  
      "contest_id":1,
      "points":12
   }
]

在上面包含对象列表的数组中,基于属性值的对象数组按contest_id的升序排序,points为降序。 输出:-

Contest_id    points

1             12
1             11
1             10
2             10
2             9

0 个答案:

没有答案