Ukuran Call Stack JS
function recurseForever(a) {
console.log(a);
return recurseForever(a + 1);
}
recurseForever(0);
// Ok, now we know the size of a call stack
Wild Worm