Skip to content

Instantly share code, notes, and snippets.

@nyawach
Created January 13, 2017 11:27
Show Gist options
  • Save nyawach/e545caa5e08b2b79faf8d813b254811f to your computer and use it in GitHub Desktop.
Save nyawach/e545caa5e08b2b79faf8d813b254811f to your computer and use it in GitHub Desktop.
階乗
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