--- title: Array.prototype.toSource() slug: Web/JavaScript/Reference/Global_Objects/Array/toSource translation_of: Web/JavaScript/Reference/Global_Objects/Array/toSource ---

{{JSRef("Global_Objects", "Array")}}{{Non-standard_header}}

概述

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

语法

array.toSource()

参数

描述

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

例子

例子: 查看数组的源码

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

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

浏览器兼容性

{{Compat("javascript.builtins.Array.toSource")}}

相关链接