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


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