📅  最后修改于: 2023-12-03 14:42:26.006000             🧑  作者: Mango
JavaScript中的Number
对象是表示数字的包装对象,它提供了一个名为toString()
的方法,用于将数字转换为字符串。
number.toString([基数]);
number
:要转换为字符串的数字。基数
(可选):进制数,取值范围为2~36。默认情况下,将数字转换为十进制字符串。toString()
方法返回数字的字符串表示形式。
const num = 42;
const str = num.toString();
console.log(str); // 输出 "42"
console.log(typeof str); // 输出 "string"
const num = 15;
const binary = num.toString(2);
const octal = num.toString(8);
const hexadecimal = num.toString(16);
console.log(binary); // 输出 "1111"
console.log(octal); // 输出 "17"
console.log(hexadecimal); // 输出 "f"
const num = 3.14159;
const str = num.toString();
console.log(str); // 输出 "3.14159"
const num = -42;
const str = num.toString();
console.log(str); // 输出 "-42"
Number
对象为NaN
,调用toString()
方法将返回字符串"NaN"。Number
对象是正无穷大(Infinity
),调用toString()
方法将返回字符串"Infinity"。Number
对象是负无穷大(-Infinity
),调用toString()
方法将返回字符串"-Infinity"。以上是JavaScript Number toString() 方法
的介绍和使用示例,希望对你有所帮助!