简单回顾下es6增数组方法

新增方法均返回新数组,避免直接修改原数组,提升代码可维护性‌。

  1. ‌**Array.prototype.toReversed()** ‌

    作用:创建原数组倒序副本,原数组不变 示例:

    ini 复制代码
    const arr = [1, 7, 3];
    const reversed = arr.toReversed(); // [3, 7, 1]
    console.log(arr); // 原数组保持 [1, 7, 3]

‌**reverse() 修改原数组**‌

ini 复制代码
const originalArr = [1, 2, 3, 4];
const reversedArr = originalArr.reverse();

console.log(originalArr);   // 输出: [4, 3, 2, 1](原数组被修改)
console.log(reversedArr);   // 输出: [4, 3, 2, 1](与原数组是同一个引用)
  1. ‌**Array.prototype.toSorted()** ‌

    作用:创建排序后的副本

    示例:

    css 复制代码
    const arr = [5, 1, 4];
    const sorted = arr.toSorted((a, b) => a - b); // [1, 4, 5]
  2. ‌**Array.prototype.toSpliced()** ‌

    作用:安全执行删除/替换操作,不修改原数组

    示例:

    ini 复制代码
    const arr = ['a', 'b', 'c'];
    const spliced = arr.toSpliced(1, 1, 'x'); // ['a', 'x', 'c']

ini 复制代码
const arr2 = [1, 2, 3, 4];
const newArr2 = arr2.toSpliced(1, 2, 'a'); 
console.log(arr2);        // [1, 2, 3, 4](原数组未变)‌
console.log(newArr2);     // [1, 'a', 4](生成新数组)

- ‌**splice() 修改原数组**‌

ini 复制代码
```
const arr1 = [1, 2, 3, 4];
const deleted1 = arr1.splice(1, 2, 'a'); 
console.log(arr1);        // [1, 'a', 4](原数组被修改)‌
console.log(deleted1);    // [2, 3](返回被删除元素)
```

二、‌元素修改方法

  1. ‌**Array.prototype.with(index, value)** ‌

    作用:替换指定索引元素,返回新数组

    示例:

    ini 复制代码
    const arr = [10, 20, 30];
    const newArr = arr.with(1, 99); // [10, 99, 30]‌

三、‌应用场景对比

方法 典型场景 对比传统方法
toReversed 需要保留原数组的倒序操作 替代reverse()的破坏性操作‌
with 不可变数据更新(如Redux) arr[index]=val更安全‌
相关推荐
lichong9518 小时前
《postman、apipost、smartApi 等使用与特点 3 天路线图(可打印 PDF+互动脑图)》
前端·测试工具·macos·pdf·postman·大前端·大前端++
怪我冷i8 小时前
es6与es5的模块区别
前端·ecmascript·es6·ai写作
一 乐8 小时前
助农服务系统|基于SprinBoot+vue的助农服务系统(源码+数据库+文档)
前端·数据库·vue.js
by__csdn8 小时前
Vue 2 与 Vue 3:深度解析与对比
前端·javascript·vue.js·typescript·vue·css3·html5
s***35308 小时前
怎么下载安装yarn
android·前端·后端
q***64978 小时前
Spring boot整合quartz方法
java·前端·spring boot
行走的陀螺仪9 小时前
Vue3远程加载阿里巴巴字体图标实时更新方案
前端·icon·字体图标·阿里巴巴图标库
0***h9429 小时前
TypeScript 与后端开发Node.js
javascript·typescript·node.js
q***78379 小时前
Spring Boot项目接收前端参数的11种方式
前端·spring boot·后端
z***94849 小时前
使用rustDesk搭建私有远程桌面
android·前端·后端