Skip to content

Instantly share code, notes, and snippets.

@creyn

creyn/index.js Secret

Created August 25, 2018 14:32
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 creyn/79b02c5aee0547bb3fb18eaceeb69e61 to your computer and use it in GitHub Desktop.
Save creyn/79b02c5aee0547bb3fb18eaceeb69e61 to your computer and use it in GitHub Desktop.
Droga Programisty : Kod : Funkcje w JavaScript 2
function Silnia(n) {
var silnia = 1;
for (var i = 1; i <= n; i++) {
silnia = silnia * i;
}
return silnia;
}
console.log(Silnia(2) + ' = ' + 2);
console.log(Silnia(3) + ' = ' + 6);
console.log(Silnia(10) + ' = ' + 3628800);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment