Array操作方法
建立数组
var arr=[]
var arr = new Array()
var arr1 = ["1", "2", "3"]
var arr2 = ["a", "b", "c"]
var arrLike = [{
name: '123',
age: '18'
}, {
name: 'abc',
age: '12'
}] //类数组
将类数组转换真正的数组Array.from(array)
eg:
obj = {"1": 'value is 1', length: 2}
a = Array.from(obj) //[undefined, "value is 1"]
修正数组
- 兼并数组,返回新数组,原数组稳定
Array.prototype.concat(arr1, arr2) //["1", "2", "3", "a", "b", "c"]
arr1.concat(arr2) //["1", "2", "3", "a", "b", "c"]
- 数组转化为字符串
Array.prototype.join(separator) //以separator(默以为逗号)拼接为字符串。
Array.prototype.toString() //把数组转换为字符串, 数组中的元素之间用逗号分开。
eg:
arr1.join() //"1,2,3"
arr1.join('') //"123"
arr1.join('/') //"1/2/3"
arr1.toString() //"1,2,3"
添补
Array.prototype.fill(value,start,end)
//value 为添补值
//start 为添补数组元素出发点坐标
//end 为添补数组元素尽头坐标
eg:
arr1.fill(0,1,2) // ["1", 0, "3"]
推断
Array.isArray()
Array.isArray(arr1) //true
挑选
Array.prototype.filter()
Array.prototype.map()
eg:
var words = [
{
id: '1',
name: '123'
},
{
id: '2',
name: 'abc'
}
]
words.filter(d => d.id === '1') //[{id: "1" , name: "123"}] 返回效果为true的值
arr1.map(x => x * 2) // [2,4,6] 返回一切项
排序
Array.prototype.reverse() //位置倒置
Array.prototype.sort()
eg:
arr1.reverse() //["3", 2, "1"]
arr1.sort() //["1", "2", "3"]
递归
Array.prototype.reduce()
eg:
const reducer = (accumulation,currentValue)=>{
accumulation + currentValue
}
arr1.reduce(reducer) // 1+2+3=6
arr1.reduce(reducer,4) //4+1+2+3=10
查找
Array.prototype.some(callback) //实行callback函数,直到callback返回true
var even = function(element){
return element % 2 === 0
}
arr1.some(even) //true
Array.prototype.every(callback) //数组的一切元素是不是都经由过程callback函数
function even(currentValue){
return currentValue < 5
}
arr1.every(even)
Array.prototype.find(callback) //在数组中返回相符callback第一个元素的值
function even(value){
return even % 2 === 0
}
arr1.find(even) // 2
Array.prototype.findIndex(callback) //返回数组中满足callback的第一个元素的索引。不然返回-1
function even(value){
return value % 2 === 0
}
arr1.findIndex(even) // 1
Array.prototype.includes(searchElement) //是不是包括seachElement
arr1.includes(2) //true
arr1.includes(0) //false
增删
- pop()
Array.prototype.pop() //删除数组的末了一个元素,并返回改元素的值
arr1.pop() // 3 arr1=[1,2]
- push()
Array.prototype.push() //增添元素到数组末端,返回增添的元素
arr1.push(4) // 4 arr1=[1, 2, 3, 4]
- shift()
Array.prototype.shift() //删除数组第一个元素,返回这个元素值
arr1.shift() // 1 arr1=[2,3]
- unshift()
Array.prototype.unshift() //增添元素到数组开首 ,返回数组长度
arr1.unshift(0) //4 arr1=[0,1,2,3]
- slice()
Array.prototype.slice(start,end) //返回[start,end]浅拷贝到一个新数组,原数组不会被修正
arr1.slice(0,2) //[1,2] arr1=[1,2,3]
- splice()
Array.prototype.splice() //经由过程删除现有元素或增加新元素来变动一个数组的内容,原数组会被修正
Array.prototype.slice(replace-index,replace-num,replace-value)
//replace-num = 0 => inserts
arr1.splice(1,0,0) //arr1=[1,0,2,3]
//replace-num !== 0 => replace
arr1.splice(1,1,4) //返回被替代的元素 =>2 arr1=[1,4,3]
轮回遍历
- map()
Array.prototype.map(callback)
arr1.map(val=>val*2) // [2, 4, 6]
- forEach()
Array.prototype.forEach(callback)
arr1.forEach(elem =>{
console.log(elem)
})
// 1
// 2
// 3
- entries()
Array.prototype.entries() //返回一个新的Array Iterator对象,该对象包括数组中每一个索引的键/值对
arr1 = ['a', 'b', 'c']
for( let [index,elem] of (arr1).entries()){
console.log(index,elem)
}
// 0 "a"
// 1 "b"
// 2 "c"
- keys()
Array.prototype.keys() //返回一个新的Array迭代器,它包括数组中每一个索引的键
for(let index of(arr1).keys()){
console.log(index)
}
// 0
// 1
// 2
- values()
Array.prototype.values() //返回一个新的Array迭代对象,包括数组每一个索引值
for(let elem of(arr1).values()){
console.log(elem)
}
// a
// b
// c