Skip to content

Instantly share code, notes, and snippets.

@ceaksan
Last active September 18, 2015 19:56
Show Gist options
  • Save ceaksan/05d3135206c07f6b72cf to your computer and use it in GitHub Desktop.
Save ceaksan/05d3135206c07f6b72cf to your computer and use it in GitHub Desktop.
function factorialize(num) {
var deger = 1;
while(num > 1) deger *= num; num--;
return deger;
}
factorialize(5, '');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment