代码如下:function where(arr, num) { var arr1=Array.prototype.slice.call(arguments,0);
arr1.sort(function(a,b){ return b-a;
});
alert(arr1);
}
where([3, 10, 5], 3);输出的结果是 3,10,5,3 ;怎么才能输出 3,3,5,10 ?
添加回答
举报
0/150
提交
取消