数组排序1.使用sort()对数组排序 let arr=[11,45,2,32,89,0]; arr.sort(function(a,b){ return a-b; }) console.log(arr); Mr.Song2022/9/12...大约 1 分钟面试题数组排序