javascript数组中的map方法和filter方法
目录
- 一、map方法
- 1编辑器
- 2代码部分
- 3运行结果
- 二、filter方法
- 1编辑器
- 2代码
- 3运行结果
一、map方法 【javascript数组中的map方法和filter方法】
1编辑器
编辑器搞出来 一起研究研究数组中的map方法:
文章图片
2代码部分
var geyao=['歌谣',"很帅","很强"]geyao.map((currentValue,index,arr,thisValue)=>{console.log(currentValue,"currentValue")console.log(index,"index")console.log(arr,"arr")console.log(thisValue,"thisValue")})
3运行结果
文章图片
小结:
currentvalue
当前元素的值 index 索引值 arr 当前元素属于的数组对象 thisValue 对象作为该执行函数的回调二、filter方法 1编辑器
编辑器搞出来 一起研究研究数组中的map方法:
文章图片
2代码
var geyao=['歌谣',"很帅","很强"]var geyao1 = geyao.filter((currentValue,index,arr,thisValue)=>{console.log(currentValue,"currentValue")console.log(index,"index")console.log(arr,"arr")console.log(thisValue,"thisValue")return currentValuehttps://www.it610.com/article/==='歌谣'})console.log(geyao1,"geyao1")
3运行结果
文章图片
小结:
currentvalue
当前元素的值 index 索引值 arr 当前元素属于的数组对象 thisValue 对象作为该执行函数的回调 形成一个新数组 形成的是过滤后的值 和map相似到此这篇关于javascript数组中的map方法和filter方法的文章就介绍到这了,更多相关map和filter方法内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- javascript数组中的findIndex方法
- JavaScript中undefined和is|JavaScript中undefined和is not defined的区别与异常处理
- [Golang]力扣Leetcode—剑指Offer—数组—61. 扑克牌中的顺子
- 竞赛|高级数据结构(树状数组以及逆序对求解)
- 调用含有数组的函数
- JavaScript中splice的使用方法详解
- JetBrains发布DataGrip 1.0——数据库与SQL领域中的瑞士军刀
- JavaScript 数组方法filter和reduce
- web|web Javascript360°全景实现
- emqx|车联网 TSP 平台场景中的 MQTT 主题设计