For a non-recursive example of a factorial function I found this example and am having a little difficulty tracing through the code:
function fact(x) {
if(x == 0) {
return 1;
}
if(x < 0 ) {
return undefined;
}
for(var i = x; --i; ) {
x *= i;
}
return x;
}
I don't understand the syntax of this for loop-- why is the iteration statement in the middle, shouldn't that be where the test condition normally is? Does that mean there is no test condition or no iteration statement? You can leave one or both out?
Secondly, what is the difference in having ++i
or --i
in a for loop as opposed toi++
and i--
?
If I wanted to find fact(5)
, in the first iteration of the for loop, is i
4 or 5?
In js, 0 means false, and the other values like 1 are true.
In fact, you can create infinite loop