Skip to content

Instantly share code, notes, and snippets.

@anjanaraveendra
Created October 20, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anjanaraveendra/83fc12d3acb6d3be47a6 to your computer and use it in GitHub Desktop.
Save anjanaraveendra/83fc12d3acb6d3be47a6 to your computer and use it in GitHub Desktop.
<script>
var a = prompt("Enter");
var f = 1;
for (var c = 1; c <= a; ++c) f *= c;
alert(f);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment