Skip to content

Instantly share code, notes, and snippets.

@gnacu
Last active May 17, 2017 20:34
Show Gist options
  • Save gnacu/ce62e4abdaed77220b55978df506f851 to your computer and use it in GitHub Desktop.
Save gnacu/ce62e4abdaed77220b55978df506f851 to your computer and use it in GitHub Desktop.
//Recursive
var fac = function(start) {
if(start == 1)
return 1;
return start * fac(start-1);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment