function factorial(a) {
if (a === 1) {
return 1;
}
return a * factorial(a - 1);
}
Just an addition:
function bar(a) {
return a ? a : bar(a)
}
function foo(a) {
return a ? a : bar("")
}
Gives AnalyzationError: Maximum call stack size exceeded..
P.S. Great thank you for lifting this project! Great job!
Thank you a lot, guys ^_^.
We will try to fix it soon.
Most helpful comment
Just an addition:
Gives
AnalyzationError: Maximum call stack size exceeded..P.S. Great thank you for lifting this project! Great job!