function test2(callback){
}
function test(n){
n += 1;
/*test2(function(){
test(11);
}); 使用注释内容不报错,为什么*/
test(11); //报错:Maximum call stack size exceeded
console.log(n);
}
test(10);
添加回答
举报
0/150
提交
取消