From 11aee08a414fd9b71269245e0e438deaedabc9f1 Mon Sep 17 00:00:00 2001 From: Richard Halsall <–richard-glyn.halsall@informatik.hs-fulda.e> Date: Sat, 21 Jan 2023 15:20:39 +0100 Subject: [PATCH] =?UTF-8?q?W=C3=BCrfel=20Funktion=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schlangen_und_leitern/js/rollDice.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 schlangen_und_leitern/js/rollDice.js 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