首页 > 代码库 > js函数的caller属性

js函数的caller属性

函数的caller属性返回的是调用当前函数的上层函数,caller的初始值是null。当函数没有被其他函数调用时caller的值为null。

    function b(){

        function c(){

            console.log(c.caller);

        }

        c();

    }

    b();

结果:

function b(){

        function c(){

            console.log(c.caller);

        }

        c();

    } 


js函数的caller属性