Skip to content

Instantly share code, notes, and snippets.

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