function test2(callback){ } function test(n){ n += 1; /*test2(function(){ test(11); }); 使用注释内容不报错,为什么*/ test(11); //报错:Maximum call stack size exceeded console.log(n); } test(10);
Caballarii
相关分类