《javascript基础补充--Array》
程序员文章站
2024-02-17 15:30:34
...
常用的
event
- isArray 判断是否数组
prototype
- join 转字符串
- concat 合并数组
- shift 前面删除
- unshift 前面插入
- push 后面插入
- pop 后面删除
- reverse 反转
- filter (callback[, thisArg])根据callback返回值来筛选结果,thisArg传入的指针
- sort([compareFun])根据某种规则排序,默认Unicode位点排序
- map(callback[,thisArg]) 循环,返回新的数组
- forEach(callback[, thisArg]) 循环,返回undefined ie9+
- indexOf (searchElement[, fromIndex = 0]) 查找一个元素的位置,返回位置,不包含返回-1
- lastIndexOf (searchElement[, fromIndex = 0]) 查找一个元素的位置,返回位置,不包含返回-1
es6
event
- from 对伪数组或可迭代对象(包括arguments Array,Map,Set,String...)转换成数组对象。不兼容ie
- of 方法创建一个具有可变数量参数的新数组实例,而不考虑参数的数量或类型。不兼容IE、opera、非谷歌mobile
- 拓展符号(...)1.类数组转数组;2.进行浅拷贝
prototype
- entries
- keys
- values
返回值均为一个iterator//event next();
- findIndex (callback[,thisArg]) 条件查找一个元素的位置,返回位置,不包含返回-1
- find (callback[,thisArg]) 条件查找一个元素,返回符合条件的元素,不包含返回-1
- fill 给固定的值,填充一个数组 ['a','b','c'].fill(7)//=>[7,7,7]
- includes (searchElement[, fromIndex]) 方法用来判断一个数组是否包含一个指定的值,不包含返回-1
- copyWithin(target, start = 0, end = this.length) 在数组内复制指定值到制定位置 [1, 2, 3, 4, 5].copyWithin(0, 3)//=>[4, 5, 3, 4, 5]
not be familiar with
- reduce
- slice
- splice
- every
Array.prototype.reduce (callback[,initialValue])
积累器
- callback 处理函数,返回值传递为累积数
- initialValue 起始值
[1,2,3,4].reduce((
accumulator,
currentValue,
currentIndex,
array
)=>{
return accumulator + currentValue
},
10
)//=>20
Array.prototype.slice (start[,end])
复制器
- 方法从start一直复制到 end 所指示的元素,但是不包括该元素
var arr1 = [1,2,3,4];
var arr2 = arr1.slice(1,3);
console.log(arr1);//=>[1,2,3,4]
console.log(arr2);//=>[2,3]
Array.prototype.splice (start,deleteCount,[item1[,item2]])
移除器
- start 移除起始位置
- deleteCount 删除的数量
- items 替代的元素
- 返回值为被删除的元素
var arr1 = [1,2,3,4];
var arr2 = arr1.splice(1,3);
console.log(arr1);//=>[1]
console.log(arr2);//=>[2,3,4]
参考资料
这个系列文章是我收纳、归纳、回顾前端基础知识。供自我与有需要的人,共同进步。感谢前人的分享,如有错处,请多提点
上一篇: map排序
下一篇: 排序——直接插入排序