--- title: Function.prototype.toSource() slug: Web/JavaScript/Reference/Global_Objects/Function/toSource translation_of: Web/JavaScript/Reference/Global_Objects/Function/toSource ---
{{JSRef("Global_Objects", "Function")}} {{non-standard_header}}

概述

返回函数的源代码的字符串表示.

语法

function.toSource();
Function.toSource();

参数

描述

toSource方法返回下面的值:

function Function() {
    [native code]
}

该方法通常在引擎内部调用.你可以在调试的时候用该方法开查看一个函数的源代码.

相关链接