- push() 从后面追加
- pop() 从后面删除
- unshift() 从前面添加
- shift() 从前面删除
- reverse() 反正数组
- splice() 截取并添加
- sort() 数组排序
sort(function(a,b){return a-b})//升序
sort(function(a,b){return b-a})//降序
以上是直接修改原始数组
- join() 连接字符
- concat() 拼接数组
- slice() 截取数组
- indexOf() 查找数组中对应内容的位置
- forEach(function(item,index,arr){}) 遍历数组 item数组的每一项 index是数组的索引 arr是原数组
- map(function(item,index,arr){}) 映射数组
- filter(function(item,index,arr){}) 过滤数组
- every(function(item,index,arr){}) 判断数组是否全部满足条件 返回布尔值
- some(function(item,index,arr){}) 判断数组里某项是否满足条件 返回布尔值