码迷,mamicode.com
首页 > 其他好文 > 详细

caller 和 callee的对比

时间:2017-12-20 13:58:36      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:str   fun   log   pre   属性   callee   color   输出   blog   

caller是函数的一个方法,它指向调用该函数的函数

function a(){
    console.log(a.caller)  
}
function b(){
    a()
}
b()

输出:
? b(){
    a()
}

callee是arguments的一个属性,他指向arguments的函数

function a(){
    console.log(arguments.callee)
}
function b(){
    a()
}
b()

输出:
? a(){
    console.log(arguments.callee)
}

 

caller 和 callee的对比

标签:str   fun   log   pre   属性   callee   color   输出   blog   

原文地址:http://www.cnblogs.com/zhaozhipeng/p/8072645.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!