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


JavaScript typedArray.name屬性用法及代碼示例


typedArray.name 是 JavaScript 中的內置屬性,用於表示給定 typedArray 構造函數名稱的字符串值。下麵指定了不同類型數組的列表:

Int8Array(); Int16Array from() Uint32Array from()
Uint8Array.of() Unit16Array.from() Float32Array.from()
Uint8ClampedArray.from() Int32Array.from() Float64Array.from()

用法:

typedArray.name;

參數:它不接受任何參數,因為它是屬性而不是函數。

返回值:它返回給定 typedArray 構造函數名稱的字符串值。

JavaScript 代碼顯示此函數的工作原理:

例子:

javascript


// Returning the string value of the given 
// typedArray constructor name. 
console.log(Int8Array.name); 
console.log(Uint8Array.name); 
console.log(Uint8ClampedArray.name); 
console.log(Int16Array.name); 
console.log(Uint16Array.name); 
console.log(Int32Array.name); 
console.log(Uint32Array.name); 
console.log(Float32Array.name); 
console.log(Float64Array.name);

輸出:

Int8Array
Uint8Array
Uint8ClampedArray
Int16Array
Uint16Array
Int32Array
Uint32Array
Float32Array
Float64Array

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript typedArray.name Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。