将数字转换为字符串:
let num = 15;
let text = num.toString();
亲自试一试 »
使用基数 2(二进制)将数字转换为字符串:
let num = 15;
let text = num.toString(2);
亲自试一试 »
这个toString()
返回一个数字作为字符串。
每个 JavaScript 对象都有一个toString()
方法。
这个toString()
当对象需要显示为文本(如 HTML)或对象需要用作字符串时,JavaScript 在内部使用该方法。
通常,您不会在自己的代码中使用它。
number.toString(
radix)
Parameter | Description |
radix | Optional. The base to use. Must be an integer between 2 and 36. Base 2 is binary Base 8 is octal Base 16 is hexadecimal. |
类型 | 描述 |
一个字符串 | 数字作为字符串。 |
使用基数 8(八进制)将数字转换为字符串:
let num = 15;
let text = num.toString(8);
亲自试一试 »
使用基数 16(十六进制)将数字转换为字符串:
let num = 15;
let text = num.toString(16);
亲自试一试 »
toString()
是 ECMAScript1 (ES1) 功能。
所有浏览器均完全支持 ES1 (JavaScript 1997):
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!