js list 排序
时间: 2023-09-20 10:07:20 浏览: 66
list排序
在 JavaScript 中,你可以使用 `Array.prototype.sort()` 方法对数组进行排序。当你想要对一个包含数字或字符串的数组进行排序时,可以使用以下方式:
1. 对于数字数组的排序,可以使用以下代码:
```javascript
const numbers = [5, 1, 3, 2, 4];
numbers.sort((a, b) => a - b);
console.log(numbers); // 输出: [1, 2, 3, 4, 5]
```
2. 对于字符串数组的排序,可以使用以下代码:
```javascript
const fruits = ["apple", "banana", "cherry"];
fruits.sort();
console.log(fruits); // 输出: ["apple", "banana", "cherry"]
```
请注意,`sort()` 方法会修改原始数组。如果你不想修改原始数组,可以使用 `Array.prototype.slice()` 方法来创建副本进行排序,如下所示:
```javascript
const numbers = [5, 1, 3, 2,
阅读全文