Javascript 数组中有那些方法可以改变自身,那些不可以
Issue 欢迎在 Gtihub Issue 中回答此问题: Issue 553 (opens in a new tab)
Author 回答者: shfshanyue (opens in a new tab)
不可改变自身的 Array API
- Array.prototype.map
Author 回答者: Kiera569 (opens in a new tab)
不改变原数组的方法:concat/join/reduce/map/forEach/filter/slice/findIndex
改变原数组的方法:push/unshift/pop/shift/sort/splice/reverse