//不改变原数组
.concat()
.slice()
.join()
.toString()
.indexOf(item,fromi)
.lastIndexOf()
//改变原数组
.splice()
.sort()
.reverse()
.push()
.pop()
.unshift()
.shift()
数组方法
原文:https://www.cnblogs.com/szzlily/p/9176792.html