JavaScript怎么把整数转换为字符串

1.x.toString()
当为简单的值调用 toString() 方法时,JavaScript 会自动把它们封装为对象,然后再调用 toString() 方法,获取对象的字符串表示。
2.加号运算符
当值与空字符串相加运算时,JavaScript 会自动把值转换为字符串。

let a = 123;
let b = 12;
let c = a.toString();
let d = b + "";
console.log(typeof a, typeof c); // number string
console.log(typeof b, typeof d);

你可能感兴趣的:(javascript,开发语言)