- let num = 10000; let count = 0; // fn会溢出 function fn(len){ count++; if(len >= num) { console.log(count) return; } fn(len+1); } fn(0) // 循环不会 functio Read More
posted @ 2024-07-03 10:29 古墩古墩 Views(1) Comments(0) Diggs(0) Edit