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


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


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

typedArray.map(callback)

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

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

返回值:它会返回一个新的typedArray,并在给定typedArray的每个元素上提供一个提供函数的结果。

JavaScript代码显示此函数的工作方式:

代码1:
<script> 
   
  // 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 
  document.write(B); 
  
</script>

输出:

2,3,4,5,6

代码2:

<script> 
   
  // 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 
  document.write(B); 
  
</script>

输出:

5,10,15,20,25,30


相关用法


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