码迷,mamicode.com
首页 > Web开发 > 详细

js 数组排序要注意的问题,返回的值最好为 -1, 0, 1之间的值

时间:2014-06-25 13:38:00      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   tar   

 

var test10Elements = [7, 6, 5, 4, 3, 2, 1, 0, 8, 9];
var comparefn = function (x, y) {
  return x - y;
};
test10Elements.sort(comparefn);

var comparefn2 = function (x, y) {
  return x > y;
};
test10Elements.sort(comparefn2);

 

bubuko.com,布布扣bubuko.com,布布扣

http://w3help.org/zh-cn/causes/SJ9013

js 数组排序要注意的问题,返回的值最好为 -1, 0, 1之间的值,布布扣,bubuko.com

js 数组排序要注意的问题,返回的值最好为 -1, 0, 1之间的值

标签:style   class   blog   code   http   tar   

原文地址:http://www.cnblogs.com/qiangspecial/p/3806741.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!