返回表示对象源代码的字符串。
stringObject.toSource();
该方法在 Internet Explorer 中无效。
var Str = "hello graybobo", s = Str.toSource(); console.log( s ); console.log( typeof s );
>>> (new String("hello graybobo")) string