不管括号里面是啥,都尝试转换为字符串
let demo = 1234.1;
let num = String(demo);
console.log(typeof(num) + ' : ' + num); // string : 1234.1let demo = undefined;
let num = String(demo);
console.log(typeof(num) + ' : ' + num); // string : undefinedlet demo = null;
let num = String(demo);
console.log(typeof(num) + ' : ' + num); // string : nulllet demo = false;
let num = String(demo);
console.log(typeof(num) + ' : ' + num); // string : false