JavaScript: Beispiele
Zufallszahl
Würfel:
let zahl1; let zahlganz; zahl1 = Math.random() * 6 + 1; zufallszahl = Math.floor( zahl1 ); document.write(zufallszahl);
Quellen
- https://eloquentjavascript.net/
- https://codes-sources.commentcamarche.net/source/list/javascript-6/last
| | |