标签:code 方法 ret function var else col style func
sort - > 按照ascii码来排序的,
1. 参数a, b
2.返回值: 1、负值, a就排前面
2、正值, b就排前面
3、0 保持不动
var arr = [8, 3, 4, 5, -5]; //冒泡排序法 arr.sort(function(a, b){ // return a - b; // 或 if(a > b){ return 1 }else{ return -1 } })
标签:code 方法 ret function var else col style func
原文地址:https://www.cnblogs.com/xm16/p/10356606.html