JS - Array.prototype.sort(compare)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS - Array.prototype.sort(compare)相关的知识,希望对你有一定的参考价值。
function compare(a, b) { if (a is less than b by some ordering criterion) { return -1; // a < b,a 在 b 前面 } if (a is greater than b by the ordering criterion) { return 1; // a > b,a 在 b 后面 } // a must be equal to b return 0; // a === b,并列排序,保持在源数组中的先后顺序 }
以上是关于JS - Array.prototype.sort(compare)的主要内容,如果未能解决你的问题,请参考以下文章