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
There might be a better approach, but this should work:
Filter the special value out of your array.
Sort your array without the special value.
Insert the special value back in the array.
For a good working example, see @Johan Wentholt's answer!