返回表示对象源代码的字符串。
arrayObject.toSource();
该方法在 Internet Explorer 中无效。
var Arr = [11, 2, 73, 41, 53, 6, 38, 9, 40], s = Arr.toSource(); console.log( s ); console.log( typeof s );
>>> [11, 2, 73, 41, 53, 6, 38, 9, 40] string