欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

​JS中的 map 有大用

JavaScript Array map() 方法

由 叫我周泡泡 创建, 最后一次修改 2016-08-04

JavaScript Array map() 方法

Array 对象参考手册 JavaScript Array 对象

实例

返回一个数组,数组中元素为原始数组的平方根:

var numbers = [491625];

function myFunction() {
    x = document.getElementById("demo")
    x.innerHTML = numbers.map(Math.sqrt);
}

输出结果为:

2,3,4,5

尝试一下 »

定义和用法

map() 方法返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值。

map() 方法按照原始数组元素顺序依次处理元素。

注意: map() 不会对空数组进行检测。

注意: map() 不会改变原始数组。


浏览器支持

表格中的数字表示支持该方法的第一个浏览器的版本号。

方法




map()Yes91.5YesYes

语法

array.map(function(currentValue,index,arr), thisValue)

参数说明

参数描述
function(currentValue, index,arr)必须。函数,数组中的每个元素都会执行这个函数
函数参数:
参数描述
currentValue必须。当前元素的值
index可选。当期元素的索引值
arr可选。当期元素属于的数组对象
thisValue可选。对象作为该执行回调时使用,传递给函数,用作 "this" 的值。
如果省略了 thisValue ,"this" 的值为 "undefined"

技术细节

返回值:返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值。
JavaScript 版本:1.6

更多实例

实例

数组中的每个元素乘于输入框指定的值,并返回新数组:

var numbers = [6544124];

function multiplyArrayElement(num) {
    return num * document.getElementById("multiplyWith").value;
}

function myFunction() {
    document.getElementById("demo").innerHTML = numbers.map(multiplyArrayElement);
}

尝试一下 »

Array 对象参考手册 JavaScript Array 对象

来自  https://www.w3cschool.cn/jsref/jsref-map.html

JS中的map

定义和用法

map() 方法返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值。

map() 方法按照原始数组元素顺序依次处理元素。

注意: map() 不会对空数组进行检测。

注意: map() 不会改变原始数组。

 

语法:

1
array.map(function(currentValue,index,arr), thisValue)

 参数说明:

 

实例:

1
2
3
4
5
6
var nums=[10,20,30];
    nums.map(function(value,index,arr){
        document.write('value值为:'+value); //10 20 30
        document.write('index值为:'+index); //0 1 2
        document.write('arr值为:'+arr); //[10,20,30]
    })

 


来自  https://www.cnblogs.com/zhaoxinmei-123/p/8927259.html


普通分类: