typedArray.toString()是JavaScript中的內置函數,用於將tyepdArray的內容轉換為字符串。
用法:
typedarray.toString()
參數:該函數不接受任何參數。
返回值:它返回一個表示typedArray元素的字符串。
代碼1:
<script>
// Constructing a new typedArray Uint8Array() object
const A = new Uint8Array([5, 10, 15, 20, 25, 30, 35]);
// Converting the elements of typedArray
// object into string
const B = A.toString();
// Printing converted string
document.write(B);
</script>
輸出:
5,10,15,20,25,30,35
代碼2:
<script>
// Constructing a new typedArray Uint8Array() object
const A = new Uint8Array(["gfg", "CSE", "GeeksForGeeks"]);
// Converting the elements of typedArray
// object into string
const B = A.toString();
// Printing converted string
document.write(B);
</script>
輸出:
0,0,0
這裏的輸出為零,因為typedArray的內容應該是數字而不是字符串。
相關用法
- Javascript typedArray.from()用法及代碼示例
- Javascript typedArray.of()用法及代碼示例
- Javascript weakSet.has()用法及代碼示例
- Javascript typedArray.map()用法及代碼示例
- Javascript weakSet.add()用法及代碼示例
- Javascript weakMap.set()用法及代碼示例
- Javascript weakMap.has()用法及代碼示例
- Javascript typedArray.every()用法及代碼示例
- Javascript getPrototypeOf()用法及代碼示例
- Javascript uneval()用法及代碼示例
- Javascript parseInt()用法及代碼示例
- Javascript parseFloat()用法及代碼示例
注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 JavaScript | typedArray.toString() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。