需求

提取js中函数的内容。所以需要将函数名转成字符串。

方法

函数名.toString()

示例

var a=function(){console.log(123)}
 
a.toString();

输出:

"function(){console.log(123)}"