當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。