js数字型转化为字符串
时间: 2023-12-29 11:04:06 浏览: 79
数字转换为字符串
要将 JavaScript 中的数字转换为字符串,你可以使用 toString() 方法或者将数字与一个空字符串相加。以下是两种常见的方法:
1. 使用 toString() 方法:
```javascript
let num = 123;
let str = num.toString(); // 将数字转换为字符串
console.log(typeof str); // 输出 "string"
console.log(str); // 输出 "123"
```
2. 通过将数字与一个空字符串相加:
```javascript
let num = 456;
let str = num + ""; // 将数字与空字符串相加,得到字符串
console.log(typeof str); // 输出 "string"
console.log(str); // 输出 "456"
```
无论是使用 toString() 方法还是将数字与空字符串相加,都可以将数字转换为字符串类型。
阅读全文