码迷,mamicode.com
首页 > 编程语言 > 详细

【前端_js】javascript中数组的map()方法

时间:2019-07-23 11:27:43      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:current   art   数组   cti   javascrip   roots   turn   结果   元素   

数组的map()方法用于遍历数组,每遍历一个元素就调用回调方法一次,并将回调函数的返回结果作为新数组的元素,被遍历的数组不会被改变。

语法:let newAarray = arr.map(function callback(currentValue, index, array) { // Return element for newArray }

示例:

let numbers = [1, 5, 10, 15];
let doubles = numbers.map((x) => {
   return x * 2;
});

// doubles is now [2, 10, 20, 30]
// numbers is still [1, 5, 10, 15]


let numbers = [1, 4, 9];
let roots = numbers.map(Math.sqrt);

// roots is now [1, 2, 3]
// numbers is still [1, 4, 9]

参考博文:javascript map()方法解析

【前端_js】javascript中数组的map()方法

标签:current   art   数组   cti   javascrip   roots   turn   结果   元素   

原文地址:https://www.cnblogs.com/leiblog/p/11230602.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!