高级前端react【Q539】Javascript 数组中有那些方法可以改变自身,那些不可以

Javascript 数组中有那些方法可以改变自身,那些不可以

Issue 欢迎在 Gtihub Issue 中回答此问题: Issue 553

Author 回答者: shfshanyue

不可改变自身的 Array API

  • Array.prototype.map

Author 回答者: Kiera569

不改变原数组的方法:concat/join/reduce/map/forEach/filter/slice/findIndex

改变原数组的方法:push/unshift/pop/shift/sort/splice/reverse