📅  最后修改于: 2023-12-03 15:17:01.984000             🧑  作者: Mango
在Javascript中,将数字更改为字符串非常简单。有几种方法可以轻松地完成此操作。
toString()方法可将数字转换为字符串。例如:
const num = 123;
const strNum = num.toString();
console.log(typeof strNum); // 输出 "string"
String()方法可将数字转换为字符串。例如:
const num = 123;
const strNum = String(num);
console.log(typeof strNum); // 输出 "string"
模板字面量可将变量转换为字符串。例如:
const num = 123;
const strNum = `${num}`;
console.log(typeof strNum); // 输出 "string"
将数字与一个空字符串相加,可将数字转换为字符串。例如:
const num = 123;
const strNum = num + '';
console.log(typeof strNum); // 输出 "string"
以上几种方法都可以将数字更改为字符串。根据实际需求选择适合的方法即可。