[前端] JavaScript数组实例的9个方法

1691 0
黑夜隐士 2022-10-21 15:47:57 | 显示全部楼层 |阅读模式
目录

    前言mapfiltersomeeveryreduceforEachfind和findIndexjoin总结


前言

手写JS原生API在面试中很常见,今天努力工作之余(摸鱼的时候)翻到了MDN文章中关于数组实例方法这部分,正好无聊就手写几个实例方法玩玩,复习一下基础内容,并记录一下。


如果你还不知道数组实例中迭代方法有什么区别,可以看下面这张图:



map

这个方法会返回一个新的数组,数组中的每一项都是执行过map提供的回调函数结果。
实现代码如下:
  1. const map = (array, fun) => {
  2.   // 类型约束
  3.   if (Object.prototype.toString.call(array) !== '[object Array]')
  4.     throw new TypeError(array + ' is not a array')
  5.   if (typeof fun !== 'function') throw new TypError(fun + ' is not a function')
  6.   // 定义一个空数组,用于存放修改后的数据
  7.   let res = []
  8.   for (let i = 0; i < array.length; i++) {
  9.     res.push(fun(array[i]))
  10.   }
  11.   return res
  12. }
  13. // 测试
  14. let res = map([1, 2, 3], item => {
  15.   return item * 2
  16. })
  17. console.log(res) // [ 2, 4, 6 ]
复制代码
filter

这个方法会返回一个新的数组,数组中的值是满足filter提供的回调函数的值,
实现代码如下:
  1. const filter = (array, fun) => {
  2.   // 类型约束
  3.   if (Object.prototype.toString.call(array) !== '[object Array]')
  4.     throw new TypeError(array + ' is not a array')
  5.   if (typeof fun !== 'function') throw new TypeError(fun + ' is not a function')
  6.   // 定义一个空数组,用于存放符合条件的数组项
  7.   let res = []
  8.   for (let i = 0; i < array.length; i++) {
  9.     // 将数组中的每一项都调用传入的函数,如果返回结果为true,则将结果push进数组,最后返回
  10.     fun(array[i]) && res.push(array[i])
  11.   }
  12.   return res
  13. }
  14. // 测试
  15. let res = filter([1, 2, 3], item => {
  16.   return item > 2
  17. })
  18. console.log(res) // [ 3 ]
复制代码
some

该方法会判断数组中的每一项,如果有一项满足回调函数中条件就返回true都不满足则返回false。
实现代码如下:
  1. const some = (array, fun) => {
  2.   // 类型约束
  3.   if (Object.prototype.toString.call(array) !== '[object Array]')
  4.     throw new TypeError(array + ' is not a array')
  5.   if (typeof fun !== 'function') throw new TypeError(fun + ' is not a function')
  6.   let flag = false
  7.   for (let i of array) {
  8.     if (fun(i)) {
  9.       flag = true
  10.       break
  11.     }
  12.   }
  13.   return flag
  14. }
  15. let res = some([1, 2, 3], item => {
  16.   return item > 2
  17. })
  18. console.log(res) // true
复制代码
every

该方法会判断数组中的每一项,如果所有项满足回调函数中条件就返回true否则返回false。
实现代码如下:
  1. const every = (array, fun) => {
  2.   // 类型约束
  3.   if (Object.prototype.toString.call(array) !== '[object Array]')
  4.     throw new TypeError(array + ' is not a array')
  5.   if (typeof fun !== 'function') throw new TypeError(fun + ' is not a function')
  6.   let flag = true
  7.   for (let i of array) {
  8.     if (!fun(i)) {
  9.       flag = false
  10.       break
  11.     }
  12.   }
  13.   return flag
  14. }
  15. let res = every([1, 2, 3], item => {
  16.   return item > 0
  17. })
  18. console.log(res) // true
复制代码
reduce

该方法会让数组中的每个元素执行我们提供的回调函数,并将结果汇总返回,实现代码如下:
  1. const reduce = (array, fun, initialValue) => {
  2.   // 类型约束
  3.   if (Object.prototype.toString.call(array) !== '[object Array]')
  4.     throw new TypeError(array + ' is not a array')
  5.   if (typeof fun !== 'function') throw new TypeError(fun + ' is not a function')
  6.   let accumulator = initialValue
  7.   for (let i = 0; i < array.length; i++) {
  8.     accumulator = fun(accumulator, array[i], i, array)
  9.   }
  10.   return accumulator
  11. }
  12. const arr = [1, 2, 3]
  13. console.log(arr.reduce(v => v + 10, 10)) // 40
  14. console.log(reduce(arr, v => v + 10, 10)) // 40
复制代码
forEach

这个方法比较简答了,就是遍历数组方法,数组中的每一项都执行回调函数,实现代码如下:
  1. const forEach = (array, fun) => {
  2.   // 类型约束
  3.   if (Object.prototype.toString.call(array) !== '[object Array]')
  4.     throw new TypeError(array + ' is not a array')
  5.   if (typeof fun !== 'function') throw new TypeError(fun + ' is not a function')
  6.   for (let i of array) {
  7.     fun(i)
  8.   }
  9. }
  10. let res = forEach([1, 2, 3], item => {
  11.   console.log(item)
  12. })
复制代码
find和findIndex

这两个方法比较类似,一个返回元素,一个返回元素的索引,这里就编写一个,实现代码如下:
  1. const myFind = (array, fun) => {
  2.   // 类型约束
  3.   if (Object.prototype.toString.call(array) !== '[object Array]')
  4.     throw new TypeError(array + ' is not a array')
  5.   if (typeof fun !== 'function') throw new TypeError(fun + ' is not a function')
  6.   let res
  7.   for (let i = 0; i < array.length; i++) {
  8.     if (fun(array[i])) {
  9.       res = array[i]
  10.     }
  11.   }
  12.   return res
  13. }
  14. // 测试
  15. let res = myFind([1, 2, 3], item => {
  16.   return item > 2
  17. })
  18. console.log(res) // 3
复制代码
join

该方法可以将数组中的所有元素根据指定的字符串进行拼接,并返回拼接后的字符串,
实现代码如下:
  1. const join = (array, separator = ',') => {
  2.   // 类型约束
  3.   if (Object.prototype.toString.call(array) !== '[object Array]')
  4.     throw new TypeError(array + ' is not a array')
  5.   if (typeof separator !== 'string')
  6.     throw new TypeError(separator + ' is not a string')
  7.   let res = array[0].toString()
  8.   for (let i = 0; i < array.length - 1; i++) {
  9.     res += separator + array[i + 1].toString()
  10.   }
  11.   return res
  12. }
  13. // 测试
  14. let res = join([1, 2, 3], '-')
  15. console.log(res) // 1-2-3
复制代码
总结

这里手写了数组实例中的9个方法,总体没有多少代码,有些也不够完善,编写这些方法的目的是对js基础的一个练习。
到此这篇关于JavaScript数组实例的9个方法的文章就介绍到这了,更多相关JS数组实例方法内容请搜索中国红客联盟以前的文章或继续浏览下面的相关文章希望大家以后多多支持中国红客联盟!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

中国红客联盟公众号

联系站长QQ:5520533

admin@chnhonker.com
Copyright © 2001-2025 Discuz Team. Powered by Discuz! X3.5 ( 粤ICP备13060014号 )|天天打卡 本站已运行