1.object.toString([radix]),参数object表示要转换成字符串的对象,常用对象为Array,Boolean,Date,Error,Function,Number等
2.参数radix可选,用于指定将数字值转换为字符串的进制。
3.布尔值转成字符串是为true/false。
4.对null和undefined使用toString会报错
5.使用toString的接股票都是字符串型数据,向true,01100都是字符串。
1 document.write(typeof(true.toString()) + "<br>"); //string 2 var i = 011001; 3 document.write(typeof(i.toString()));//string