前端冷知识
2018-11-16 本文已影响0人
刘大
匿名函数调用自身
function () {
return arguments.callee;
}
例:
// 阶乘
function (x) {
if (x <= 1) {
return 1;
} else {
return x * arguments.callee(x-1)
}
}
注意:箭头函数中没有arguments(规定)。
function () {
return arguments.callee;
}
例:
// 阶乘
function (x) {
if (x <= 1) {
return 1;
} else {
return x * arguments.callee(x-1)
}
}
注意:箭头函数中没有arguments(规定)。