blob: 0373c49bb1f4c1b81cf131497f1ec732e7a0d996 [file] [log] [blame]
var fact5 = function fact(n){
if (n <= 1) return 1
return n * fact(n - 1)
}(5)