fun fact()return
{
if(n<=1) //當n=1時候1,條件如今;
return 1;
}
return n*fact(n-1);
alert(fact(5));
5!=5*4!=5*4*3!=5*4*3*2!=5*4*3*2*1