JS你不得不知道的JavaScript数组相关知识全面总结复习专用
Posted YK菌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS你不得不知道的JavaScript数组相关知识全面总结复习专用相关的知识,希望对你有一定的参考价值。
数组创建
- new Array
- Array
- 字面量
Array.from()
[类数组] -> [数组] 【ES6】Array.of()
[参数] -> [数组] 【ES6】
数组属性
length
数组长度
检测数组
instanceof Array
Array.isArray()
遍历数组
for(let i = 0; i < nums.length; i++) {
// nums[i]
}
for(i in nums){
// nums[i]
}
nums.forEach((item)=>{
// item
})
for(item of nums){
// item
}
转换方法
toString()
[逗号分隔的字符串]toLocaleString()
valueOf()
[数组本身]
栈方法【改变原数组】
push()
[栈顶]推入 【返回新数组的长度】pop()
[栈顶]弹出 【返回删除的项】
队列方法【改变原数组】
-
push()
[队尾]入队 【返回新数组的长度】 -
shift()
[队头]出队 【返回删除的项】 -
unshift()
[队头]入队 【返回新数组的长度】 -
pop()
[队尾]出队 【返回删除的项】
排序方法【改变原数组】
reverse()
【返回调用数组引用】sort()
[调用String()转型] 【返回调用数组引用】[对数字数组从小到大排序sort((a,b)=>a-b)
]
操作方法【不改变原数组】
concat()
[连接数组,会打平参数数组]【返回新构建的数组,不改变原数组】slice([begin[, end]])
[截取数组]【返回新构建的数组,不改变原数组】splice(start[, deleteCount[, item1[, item2[, ...]]]])
[删除,插入,替换] 【返回被删除的元素,不改变原数组】
删除 (开始位置, 删除个数)
插入 (开始位置, 0, 要插入的元素)
替换 (开始位置, 删除个数, 要插入的元素)flat([depth])
扁平化数组 【ES10】【返回新构建的数组,不改变原数组】
const arr = [0, 1, 2, [3, 4]];
const newArr = arr.flat();
console.log(newArr); // [ 0, 1, 2, 3, 4 ]
console.log(arr); // [ 0, 1, 2, [ 3, 4 ] ]
const arr2 = [0, [1, 2], [3, [4, 5]]];
const newArr2 = arr2.flat(1);
console.log(newArr2); // [ 0, 1, 2, 3, [ 4, 5 ] ]
归并方法【不改变原数组】
reduce()
reduceRight()
【JS】JavaScript数组-归并方法-reduce-reduceRight
let values = [1, 2, 3, 4, 5]
let sum = values.reduce((prev, cur, index, array) => prev + cur)
console.log(sum) // 15
搜索和位置方法【不改变原数组】
indexOf(要查找的元素, [起始搜索位置])
【返回位置】lastIndexOf()
【返回位置】includes()
【返回布尔值】【ES7】find()
【返回第一个匹配的元素】 【ES6】findIndex()
【返回第一个匹配元素的索引】 【ES6】
const evens = [2, 4, 6]
let result = evens.find((element, index, array) => element === 4)
let result2 = evens.findIndex((element, index, array) => element === 4)
console.log(result) // 4
console.log(result2) // 1
迭代方法【不改变原数组】
every()
[每一项都为真,则返回真]some()
[有一项为真,则返回真]filter()
[返回为真的项组成的数组]forEach()
[没有返回值]map()
[返回每一项运行结果组成的新数组]
【ES6】JavaScript数组-迭代器方法-keys()-values()-entries()-迭代方法-every()-some()-filter()-map()-forEach()
const evens = [2, 4, 6]
let result = evens.every((element, index, array) => element % 2 === 0)
console.log(result) // true
迭代器方法【ES6】
keys()
values()
entries()
【ES6】JavaScript数组-迭代器方法-keys()-values()-entries()-迭代方法-every()-some()-filter()-map()-forEach()
复制填充方法 【改变原数组】【ES6】
-
copyWith(target[, start[, end]])
[复制数组的一部分到同一数组中的另一个位置] 【返回修改后的数组】 -
fill(target[, start[, end]])
[固定值填充一个数组] 【返回修改后的数组】
const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9];
arr.copyWithin(0, 3, 6);
console.log(arr); //[4, 5, 6, 4, 5, 6, 7, 8, 9]
const arr1 = [1, 2, 3, 4, 5, 6, 7, 8, 9];
const a = arr1.fill(0, 1, 5);
console.log(arr1); // [1, 0, 0, 0, 0, 6, 7, 8, 9]
console.log(a); // [1, 0, 0, 0, 0, 6, 7, 8, 9]
拓展运算符...
【ES6】
const colors = ['green', 'red', 'pink'];
const colors1 = ['white', 'grey'];
const colors2 = [...colors, ...colors1];
console.log(colors2); // [ 'green', 'red', 'pink', 'white', 'grey' ]
以上是关于JS你不得不知道的JavaScript数组相关知识全面总结复习专用的主要内容,如果未能解决你的问题,请参考以下文章
前端知识体系-JS相关你真的了解JavaScript编译解析的流程吗?