Code Snippet

1
2
3
4
5
6
7
8
9
10
function func() {
    // Get function code text
    var thisFuncText = arguments.callee.toString();
 
    // Print out function code
    console.log(thisFuncText);
}
 
// Function call
func();

Console Out

1
2
3
4
5
6
7
function func() {
    // Get function code text
    var thisFuncText = arguments.callee.toString();
 
    // Print out function code
    console.log(thisFuncText);
}