toSource 方法

返回表示对象源代码的字符串。

语法:
  1. stringObject.toSource();
注:

该方法在 Internet Explorer 中无效。

示例:
  1. var Str = "hello graybobo",
  2. s = Str.toSource();
  3. console.log( s );
  4. console.log( typeof s );
结果:
  1. >>>
  2. (new String("hello graybobo"))
  3. string