前言
初衷: 在面试中,面试官经常问到说一下Es5和Es6的数组方法有哪些,有很多同学老是分不清楚,今天笔者就来分享一下。
适合人群: 前端初级开发
Es5系列
indexOf
用途: 用于查找数组中是否存在某个值,如果存在则返回某个值的下标,否则返回-1
letlist=[1,2,3]; console.log(list.indexOf(2))//1 console.log(list.indexOf("蛙人"))//-1 map
用途: map是一个数组函数方法,接收三个参数,value,index,self,返回值是处理完的结果。
letlist=[1,2,3]; constres=list.map((value,key,self)=>{ console.log(value)//123 console.log(key)//012 console.log(self)//[1,2,3] returnvalue*2 }) console.log(res) forEach
用途: 用于遍历一个数组,接收三个参数,value,index,self,返回值为undefined
letlist=[1,2,3]; constres=list.forEach((value,key,self)=>{ console.log(value)//123 console.log(key)//012 console.log(self)//[1,2,3] return123 }) console.log(res)//undefined splice
用途: 用于数组删除或替换内容,接收三个参数:
- 第一个参数是,删除或添加的位置
- 第二个参数是,要删除的几位,如果为0则不删除
- 第三个参数是,向数组添加内容
letlist=[1,2,3]; list.splice(0,1)//把第0个位置,给删除一位 console.log(list)//[2,3] list.splice(0,1,"蛙人")//把第0个位置,给删除一位,添加上一个字符串 console.log(list)//["蛙人",2,3] list.splice(0,2,"蛙人")//把第0个位置,给删除2位,添加上一个字符串 console.log(list)//["蛙人",3] slice
用途: 用于截取数组值,接收两个参数,第一个参数是要获取哪个值的下标,第二个参数是截取到哪个下标的前一位。
letlist=[1,2,3]; letres=list.slice(1,3)//从第一位下标开始截取,到第三位下标的前一位,所以截取出来就是[2,3] console.log(res)//[2,3] filter
用途: 用于过滤数组内的符合条件的值,返回值为满足条件的数组对象
letlist=[1,2,3]; letres=list.filter(item=>item>1); console.log(res)//[2,3] every
用途:用于检测数组所有元素是否都符合指定条件,返回值为Boolean , 该方法是数组中必须全部值元素满足条件返回true,否则false
letlist=[1,2,3]; letres=list.every(item=>item>0) console.log(res)//true letres1=list.every(item=>item>1) console.log(res1)//false some
用途: 用于检测数组中的元素是否满足指定条件,返回值为Boolean , 该方法是只要数组中有一项满足条件就返回true,否则false
letlist=[1,2,3]; letres=list.some(item=>item>0) console.log(res)//true reduce
用途: 该方法接收一个函数作为累加器,数组中的每个值(从左到右)开始缩减,最终计算为一个值。该方法回调函数接收四个参数
- 第一个参数:初始值, 或者计算结束后的返回值
- 第二个参数:当前元素
- 第二个参数:当前元素的索引
- 第四个参数:当前元素所属的数组对象,本身
我们一般只用前两个就行,reduce第一个参数回调函数,第二个参数是初始值
letlist=[1,2,3]; letres=list.reduce((prev,cur)=>prev+=cur,0) console.log(res)//6 reverse
用途: 用于数组反转
letlist=[1,2,3]; letres=list.reverse(); console.log(res)//[3,2,1] join
用途: 用于数据以什么形式拼接
letlist=[1,2,3]; letres=list.join("-"); console.log(res)//1-2-3 letsum=eval(list.join("+")) console.log(sum)//6 sort
用途:用于将数组排序,排序规则看返回值
- 返回值为正数,后面的数在前面
- 返回值为负数,前面的数不变,还在前面
- 返回值为0,都不动
letlist=[1,2,3]; letsort=list.sort((a,b)=>b-a) console.log(sort)//[3,2,1] concat
用途: 用于合并数组原始
letlist=[1,2,3]; letres=list.concat([1,2,3]) console.log(res)//[1,2,3,1,2,3] push
用途: 向数组后面添加元素,返回值为数组的length
letlist=[1,2,3]; letres=list.push(1) console.log(res)//4 pop
用途: 用于删除数组尾部的元素,返回值为删除的元素
letlist=[1,2,3]; letres=list.pop() console.log(res)//3 shift
用途: 用于删除数组的头部,返回值为删除的元素
letlist=[1,2,3]; letres=list.shift() console.log(res)//1 unshift
用途: 向数组的头部添加元素,返回值为数组的length
letlist=[1,2,3]; letres=list.unshift(1) console.log(res)//4 toString
用途: 用于将数组内容转换为字符串
letlist=[1,2,3]; letres=list.toString() console.log(res)//1,2,3 Es6 +
includes
用途: 检测数组中是否存在该元素,返回Boolean值
letlist=[1,2,3]; letres=list.includes("蛙人") letres1=list.includes(1) console.log(res,res1)//falsetrue find
用途: 查找数组的元素,满足条件的返回单个值,按照就近原则返回
letlist=[1,2,3]; letres=list.find((item)=>item>1) console.log(res)//2,按照就近原则返回 findIndex
用途: 查找数组中元素,满足条件的返回数组下标
letlist=[1,2,3]; letres=list.findIndex((item)=>item>1) console.log(res)//1,按照就近原则返回下标 flat
用途: 用于拉平嵌套数组对象
letlist=[1,2,3,[4,[5]]]; letres=list.flat(Infinity) console.log(res)//[1,2,3,4,5] fill
用途: 用于填充数组对象
letlist=[1,2,3]; letres=list.fill(1) console.log(res)//[1,1,1] Array.isArray
用途: 检测对象是不是一个数组
letlist=[1,2,3]; letres=Array.isArray(list) console.log(res)//true Array.from
用途: 将伪数组转换为真数组
letres=Array.from(document.getElementsByTagName("div")) console.log(res)//转换为真数组就可以调用数组原型的方法 Array.of
用途: 用于生成一个数组对象,主要是用来弥补Array()的不足
letres=Array.of(1,2,3) console.log(res)//[1,2,3] 改变原始数组值的有哪些
splice、reverse、sort、push、pop、shift、unshift、fill
结语
这里keys、values、entries就不写啦,它们使用数组方式的话,返回的是Iterator遍历器对象。欢迎大家查漏补缺常用数组方法哦
原文地址:https://mp.weixin.qq.com/s/DZX4DT84Dw3IdptZsg-jCw