Created
May 17, 2017 20:47
-
-
Save gnacu/1d5bd576c4bfa8fbc10f6dec31378248 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
//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