0 votes
in JavaScript by
How can you get the reference of a caller function inside a function?

1 Answer

0 votes
by
The arguments object has a callee property, which refers to the function you're inside of. For example −

function func() {

   return arguments.callee;

}

func();                // ==> func

Related questions

0 votes
asked Mar 21, 2021 in JavaScript by rajeshsharma
0 votes
asked Sep 19, 2021 in JavaScript by sharadyadav1986
...