未完待续
1 js中数组的方法哪些能改变原数组?(7种)
Reverse(),sort() ----颠倒顺序、排序
push(),pop() ----在队尾插入,在队尾移出
shift(),unshift() ---- 在队头插入、队头移出
splice(i,len,neweles) ----在i的位置删除长度为len的元素,在i的位置插入neweles新的元素
未完待续
Reverse(),sort() ----颠倒顺序、排序
push(),pop() ----在队尾插入,在队尾移出
shift(),unshift() ---- 在队头插入、队头移出
splice(i,len,neweles) ----在i的位置删除长度为len的元素,在i的位置插入neweles新的元素