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


JavaScript BigInt.prototype.toString()用法及代碼示例


BigInt.prototype.toString()方法是JavaScript中的內置方法,用於返回表示指定BigInt對象的字符串。

用法:

bigIntObj.toString( radix )

參數:該函數接受單個參數,並且是可選的。

  • radix:整數形式,取值範圍是2〜36。

返回值:此方法返回表示指定的BigInt對象的字符串。

異常:如果toString()在基數中小於2或大於36,則引發RangeError。



以下示例說明了JavaScript中的BigInt.prototype.toString()方法:

範例1:

console.log(1023n.toString()); 
  
console.log(1023n.toString(2)); 
  
console.log(1023n.toString(9)); 
  
console.log((-0n).toString());    
  
console.log(BigInt(-0).toString());

輸出:

"1023"
"1111111111"
"1356"
"0"
"0"

範例2:

console.log(17n.toString()); 
  
console.log(66n.toString(2)); 
  
console.log(254n.toString(16));    
  
console.log(-10n.toString(2)); 
  
console.log(-0xffn.toString(2));

輸出:

"17"
"1000010"
"fe"
-1010
-11111111

支持的瀏覽器:下麵列出了BigInt.prototype.toString()方法支持的瀏覽器:

  • 穀歌瀏覽器
  • Firefox
  • Opera
  • Safari
  • Edge

相關用法


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