StringValueOF()方法的代码示例
时间: 2024-05-05 20:19:19 浏览: 32
String类方法使用例子
当接收的参数为数字时,将数字转换成字符串返回,如果接收的参数为 null 或 undefined,则返回空字符串。
以下是 JavaScript 中 String.valueOf() 的代码示例:
```javascript
let num = 123;
let str1 = num.toString(); // 将数字转换为字符串
let str2 = String(num); // 使用 String 构造函数将数字转换为字符串
let str3 = num + ""; // 通过将数字与空字符串连接,将数字转换为字符串
console.log(typeof str1); // 输出字符串类型:string
console.log(typeof str2); // 输出字符串类型:string
console.log(typeof str3); // 输出字符串类型:string
let nullValue = null;
let undefinedValue = undefined;
let emptyStr1 = nullValue.toString(); // 返回空字符串,因为 nullValue 是 null
let emptyStr2 = undefinedValue.toString(); // 返回空字符串,因为 undefinedValue 是 undefined
let emptyStr3 = String(nullValue); // 返回空字符串,因为 nullValue 是 null
let emptyStr4 = String(undefinedValue); // 返回空字符串,因为 undefinedValue 是 undefined
let emptyStr5 = nullValue + ""; // 返回空字符串,因为 nullValue 是 null
let emptyStr6 = undefinedValue + ""; // 返回空字符串,因为 undefinedValue 是 undefined
console.log(emptyStr1); // 输出空字符串:""
console.log(emptyStr2); // 输出空字符串:""
console.log(emptyStr3); // 输出空字符串:""
console.log(emptyStr4); // 输出空字符串:""
console.log(emptyStr5); // 输出空字符串:""
console.log(emptyStr6); // 输出空字符串:""
```
希望对你有所帮助!
阅读全文