typedArray.fill()是JavaScript中的內置函數,用於填充從開始索引到結束索引的typedArray值。
用法:
typedarray.fill(value, start, end)
參數:它采用以下指定的三個參數-
- value:它是用類型化數組填充的值。
- start:它是起始索引,是可選的,其默認值為0。
- end:它是結束索引,可選,不包括在內。它的默認值是typedArray的長度。
返回值:它返回修改後的數組。
JavaScript代碼顯示此函數的工作方式:
// Javascript to illustrate typedArray.fill()
<script>
// Creating some typedArrays
const A = new Uint8Array([ 0, 0, 0, 0 ]);
const B = new Uint8Array([ 0, 0, 0, 0 ]);
const C = new Uint8Array([ 0, 0, 0, 0 ]);
const D = new Uint8Array([ 0, 0, 0, 0 ]);
// Calling fill() function to fill different values
a = A.fill(4, 1, 3);
b = B.fill(5, 1);
c = C.fill(3);
d = D.fill(4, 0, 0);
// Printing modified array
document.write(a +"<br>");
document.write(b +"<br>");
document.write(c +"<br>");
document.write(d +"<br>");
</script>
輸出:
0,4,4,0 0,5,5,5 3,3,3,3 0,0,0,0
注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 JavaScript | typedArray.fill()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。