Created
January 13, 2017 11:27
-
-
Save nyawach/e545caa5e08b2b79faf8d813b254811f to your computer and use it in GitHub Desktop.
階乗
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function factrical(n) { | |
if(typeof n !== "number") return "Not Number"; | |
return n === 1 ? 1 : n * factrical(n-1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment