Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@thaiall
Created October 2, 2016 04:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save thaiall/b0b8346b9cd8d51891c77d37d1dc25ee to your computer and use it in GitHub Desktop.
Save thaiall/b0b8346b9cd8d51891c77d37d1dc25ee to your computer and use it in GitHub Desktop.
Factorial คือ การกระทำกับค่าเลขจำนวนเต็มบวก ที่จะนำมาคูณกันตั้งแต่ 1 ถึง ค่าจำนวนเต็มนั้นๆ
<script>
var myv = fac(5);
document.write(myv);
function fac(v) {
if(v == 0)
return 1;
else
return(v * fac(v - 1));
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment