BigInt.toString() 方法是 JavaScript 中的內置方法,用於返回表示指定 BigInt 對象的字符串。
用法:
bigIntObj.toString( radix )
參數:該函數接受單個參數,並且該參數是可選的。
- radix: 它是一個整數值,範圍是2到36。
返回值:此方法返回表示指定BigInt對象的字符串。
異常: A RangeError如果基數中的 toString() 小於 2 或大於 36,則拋出此錯誤。
以下示例說明了 JavaScript 中的 BigInt.prototype.toString() 方法:
示例 1:此示例展示了 BigInt.prototype.toString() 方法在 JavaScript 中的使用。
javascript
<script>
console.log(1023n.toString());
console.log(1023n.toString(2));
console.log(1023n.toString(9));
console.log((-0n).toString());
console.log(BigInt(-0).toString());
</script>
輸出:
"1023" "1111111111" "1356" "0" "0"
示例 2:此示例展示了 BigInt.prototype.toString() 方法在 JavaScript 中的使用。
javascript
<script>
console.log(17n.toString());
console.log(66n.toString(2));
console.log(254n.toString(16));
console.log(-10n.toString(2));
console.log(-0xffn.toString(2));
</script>
輸出:
"17" "1000010" "fe" -1010 -11111111
我們有 Javascript BigInt 方法的完整列表,要檢查這些方法,請閱讀 Javascript BigInt Complete Reference 文章。
支持的瀏覽器:BigInt.prototype.toString()方法支持的瀏覽器如下:
- 穀歌瀏覽器 67 及以上版本
- 邊 79 及以上
- 火狐瀏覽器 68 及以上版本
- Opera 54 及以上
- Safari 14 及以上版本
相關用法
- JavaScript BigInt toLocaleString()用法及代碼示例
- JavaScript BigInt valueOf()用法及代碼示例
- JavaScript BigInt.prototype.toLocaleString()用法及代碼示例
- JavaScript BigInt.prototype.toString()用法及代碼示例
- JavaScript BigInt.prototype.valueOf()用法及代碼示例
- JavaScript BigInt()用法及代碼示例
- JavaScript Boolean constructor()用法及代碼示例
- JavaScript Boolean toSource()用法及代碼示例
- JavaScript Boolean toString()用法及代碼示例
- JavaScript Boolean valueOf()用法及代碼示例
- JavaScript Boolean()用法及代碼示例
- JavaScript Math cosh()用法及代碼示例
- JavaScript Math sinh()用法及代碼示例
- JavaScript Math sin()用法及代碼示例
- JavaScript Math cos()用法及代碼示例
- JavaScript Math tan()用法及代碼示例
- JavaScript Math abs()用法及代碼示例
- JavaScript Math pow()用法及代碼示例
- JavaScript Math asin()用法及代碼示例
- JavaScript Math acos()用法及代碼示例
- JavaScript Math atan()用法及代碼示例
- JavaScript Math ceil()用法及代碼示例
- JavaScript Math floor()用法及代碼示例
- JavaScript Math round()用法及代碼示例
- JavaScript Math trunc()用法及代碼示例
注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 JavaScript BigInt toString() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。