当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript typedArray.map()用法及代码示例


typedArray.map() 是 JavaScript 中的内置函数,用于创建一个新的 typedArray,并使用给定 typedArray 的每个元素上提供的函数的结果。

用法:

typedArray.map(callback)

参数:它接受一个参数回调函数,该函数接受下面指定的一些参数 -

  • currentValue:它是 typedArray 中正在处理的当前元素。
  • index:它是 typedArray 中正在处理的当前元素的索引。
  • array:正在调用的是 typedArray。

返回值:它返回一个新的 typedArray,其中包含给定 typedArray 的每个元素上提供的函数的结果。

示例 1:

javascript


// Creating a typedArray with some elements 
const A = new Uint8Array([4, 9, 16, 25, 36]); 
  
// Calling map() function with the parameter 
// Math.sqrt function which find square root  
// of the typedArray's elements 
const B = A.map(Math.sqrt); 
  
// Printing the result of the function 
console.log(B);

输出:

2,3,4,5,6

示例 2:

javascript


// Creating a typedArray with some elements 
var A = new Uint8Array([1, 2, 3, 4, 5, 6]); 
  
// Calling map() function 
var B = A.map(function(a) { 
    return a * 5; 
}); 
  
// Returning the results 
console.log(B);

输出:

5,10,15,20,25,30

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript typedArray.map() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。