Skip to content

Instantly share code, notes, and snippets.

@creyn

creyn/index.js Secret

Last active April 15, 2018 08:37
Show Gist options
  • Save creyn/609121bc4bad4af8bd21f795dd6de3f5 to your computer and use it in GitHub Desktop.
Save creyn/609121bc4bad4af8bd21f795dd6de3f5 to your computer and use it in GitHub Desktop.
Droga Programisty : Szybkie Palce : funkcja WylosujCzasRundy
// Funkcja ktora losuje czas rundy uwzgledniajac 'minimalnyCzasRundy'
// oraz losowy czas od 1 do 5 sekund
function WylosujCzasRundy(minimalnyCzasRundy) {
var czasLosowy = Math.floor(1 + Math.random() * 5);
return minimalnyCzasRundy + czasLosowy;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment