javascript中callee和caller作用?

1.caller是返回一个对函数的引用,该函数调用了当前函数。

2.callee是返回正在被执行的function函数,也就是所指定的function对象的正文。

原文地址:https://www.cnblogs.com/duanzhange/p/8553086.html