Skip to content

Instantly share code, notes, and snippets.

@tatey
Created January 31, 2010 12:56
Show Gist options
  • Save tatey/291055 to your computer and use it in GitHub Desktop.
Save tatey/291055 to your computer and use it in GitHub Desktop.
var fact = function(x) {
return x > 1 && x * fact(x - 1) || 1
}
alert(fact(6));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment