// FXP :: flashxpress.net :: factoriel(pValue) // --------------------------------------------- // calcul le factoriel de pValue // c'est a dire pValue! en notation mathématique Math.factoriel= function(pValue){ if (pValue<0) return false; return (pValue>0) ? pValue*arguments.callee(pValue-1) : 1 ; }