下面js数组的方法中,哪些方法不能改变自身数组?
splice(start: number, deleteCount?: number): T[]; /** * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements. 从一个数组的末尾开始删除元素,如果必要的话插入新的元素在删除的位置,返回的是删除的元素 * @param start The zero-based location in the array from which to start removing elements. 元素的开头是以 0 开头的 * @param deleteCount The number of elements to remove. deleteCount 是从 elements 中移除的数量 * @param items Elements to insert into the array in place of the deleted elements. items 是向元素中插入的数组的元素 */