当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。