--- title: Function.prototype.toSource() slug: Web/JavaScript/Reference/Global_Objects/Function/toSource translation_of: Web/JavaScript/Reference/Global_Objects/Function/toSource ---
返回函数的源代码的字符串表示.
function.toSource();
Function.toSource();
无
toSource方法返回下面的值
:
Function
对象,toSource
返回下面的字符串:function Function() {
[native code]
}
toSource返回能定义该函数
的Javascript源码.该方法通常在引擎内部调用.你可以在调试的时候用该方法开查看一个函数的源代码.