JS BigInt.toString()

🌙
手机阅读
本文目录结构

The toString() method returns a string representing the specified BigInt object. The trailing “n” is not part of the string.

The source for this interactive example is stored in a GitHub repository. If you’d like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.

Syntax

  1. bigIntObj.toString([radix])

Parameters

radixOptional

Optional. An integer in the range 2 through 36 specifying the base to use for representing numeric values.

Return value

A string representing the specified BigInt object.

Exceptions

RangeError

If toString() is given a radix less than 2 or greater than 36, a RangeError is thrown.

Description

The BigInt object overrides the toString() method of the Object object; it does not inherit Object.prototype.toString(). For BigInt objects, the toString() method returns a string representation of the object in the specified radix.

The toString() method parses its first argument, and attempts to return a string representation in the specified radix (base). For radixes above 10, the letters of the alphabet indicate numerals greater than 9. For example, for hexadecimal numbers (base 16) a through f are used.

If the radix is not specified, the preferred radix is assumed to be 10.

If the bigIntObj is negative, the sign is preserved. This is the case even if the radix is 2; the string returned is the positive binary representation of the bigIntObj preceded by a - sign, not the two’s complement of the bigIntObj.

Examples

Using toString

  1. 17n.toString(); // '17'
  2. 66n.toString(2); // '1000010'
  3. 254n.toString(16); // 'fe'
  4. -10n.toString(2);   // -1010'
  5. -0xffn.toString(2); // '-11111111'

Negative-zero BigInt

There is no negative-zero BigInt as there are no negative zeros in integers. -0.0 is an IEEE floating-point concept that only appears in the JavaScript Number type.

  1. (-0n).toString(); // '0'
  2. BigInt(-0).toString(); // '0'

Specifications

Specification Status
BigInt Stage 3

See also

AXIHE / 精选资源

浏览全部教程

面试题

学习网站

前端培训
自己甄别

前端书籍

关于朱安邦

我叫 朱安邦,阿西河的站长,在杭州。

以前是一名平面设计师,后来开始接接触前端开发,主要研究前端技术中的JS方向。

业余时间我喜欢分享和交流自己的技术,欢迎大家关注我的 Bilibili

关注我: Github / 知乎

于2021年离开前端领域,目前重心放在研究区块链上面了

我叫朱安邦,阿西河的站长

目前在杭州从事区块链周边的开发工作,机械专业,以前从事平面设计工作。

2014年底脱产在老家自学6个月的前端技术,自学期间几乎从未出过家门,最终找到了满意的前端工作。更多>

于2021年离开前端领域,目前从事区块链方面工作了