toSource 方法

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

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

该方法在 Internet Explorer 中无效。

示例:
  1. var Arr = [11, 2, 73, 41, 53, 6, 38, 9, 40],
  2. s = Arr.toSource();
  3. console.log( s );
  4. console.log( typeof s );
结果:
  1. >>>
  2. [11, 2, 73, 41, 53, 6, 38, 9, 40]
  3. string