Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Array.prototype.toSource()

非标准
该特性是非标准的,请尽量不要在生产环境中使用它!

概述

返回一个字符串,代表该数组的源代码.

语法

array.toSource()

参数

描述

在调试时,你可以使用toSource方法来查看一个数组的内容.

例子

例子: 查看数组的源码

var alpha = new Array("a", "b", "c");

alpha.toSource();   //返回["a", "b", "c"]

相关链接

文档标签和贡献者

 此页面的贡献者: teoli, ziyunfei
 最后编辑者: teoli,