标签:ted ons cte OLE nbsp fun 函数 prot log
map()
方法创建一个新数组,其结果是该数组中的每个元素都调用一个提供的函数后返回的结果。
1 var array1 = [1, 4, 9, 16];
2
3 // pass a function to map
4 const map1 = array1.map(x => x * 2);
5
6 console.log(map1);
7 // expected output: Array [2, 8, 18, 32]
标签:ted ons cte OLE nbsp fun 函数 prot log
原文地址:https://www.cnblogs.com/it-Ren/p/10656662.html