-
Notifications
You must be signed in to change notification settings - Fork 2
/
caller_callee.js
58 lines (50 loc) · 1.34 KB
/
caller_callee.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//http://blog.xieliqun.com/2016/08/14/arguments/
/*
26.Javascript中callee和caller的作用?
答案:
caller是返回一个对函数的引用,该函数调用了当前函数;
callee是返回正在被执行的function函数,也就是所指定的function对象的正文。
*/
function a() {
console.log('========'+arguments.callee);
}
function b() {
a();
}
b();
/*
如果一对兔子每月生一对兔子;一对新生兔,从第二个月起就开始生兔子;
假定每对兔子都是一雌一雄,试问一对兔子,第n个月能繁殖成多少对兔子?(使用callee完成)
*/
var result = [];
function fn(n) {
if (n == 1 || n == 2) {
return 1;
} else {
if (result[n]) {
return result[n];
} else {
//argument.callee()表示fn()
result[n] = arguments.callee(n - 1) + arguments.callee(n - 2);
return result[n];
}
}
}
console.log(fn(3))
function callerTest(){
if(callerTest.caller){
var caller = callerTest.caller.toString();
console.log(caller);
}else{
console.log("no caller")
}
}
function handler(){
callerTest();
}
function handlerToHandler(){
handler();
}
callerTest(); //no caller
handler(); //返回调用者handler函数
handlerToHandler(); //返回调用者handler函数