diff --git a/schlangen_und_leitern/js/rollDice.js b/schlangen_und_leitern/js/rollDice.js new file mode 100644 index 0000000..a62afed --- /dev/null +++ b/schlangen_und_leitern/js/rollDice.js @@ -0,0 +1,14 @@ +function rollDice() { + //Max und Min Zahl geben + max = 6; + min = 1 + // min und max als .Math variable umwandeln + min = Math.ceil(min); + max = Math.floor(max); + //ein zufällige zahl zwischen min und max generieren + roll = Math.floor(Math.random() * (max - min + 1) + min); + console.log(roll); + + return roll; + +} \ No newline at end of file