js中的map函数
Posted 名字不好起啊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中的map函数相关的知识,希望对你有一定的参考价值。
方便数组操作,返回处理后的数组
三个参数:当前元素,当前元素下标,当前map的数组
arr = [{ a: 1 }, { a: 2 }, { a: 3 }]; arr.map( (arg, arg2, arg3) => { console.log(arg,arg2,arg3);return arg[\'a\']})
以上是关于js中的map函数的主要内容,如果未能解决你的问题,请参考以下文章
RecyclerView holder中的Android Google Maps动态片段