Sort an array except one element in JavaScript

前端 未结 10 2510
感动是毒
感动是毒 2021-02-12 01:31

I have an array and I am sorting it but I need to sort everything except one element of my array.

My array is:

var Comparison = [
    {key: \"None\", val         


        
10条回答
  •  伪装坚强ぢ
    2021-02-12 01:55

    There might be a better approach, but this should work:

    1. Filter the special value out of your array.

    2. Sort your array without the special value.

    3. Insert the special value back in the array.

    For a good working example, see @Johan Wentholt's answer!

提交回复
热议问题