階乗
function factrical(n) { if(typeof n !== "number") return "Not Number"; return n === 1 ? 1 : n * factrical(n-1); }