JavaScript: Beispiele
JavaScript: DOM
Zufallszahl
Würfel:
let zahl1; let zahlganz; zahl1 = Math.random() * 6 + 1; zufallszahl = Math.floor( zahl1 ); document.write(zufallszahl);
Quellen
- http://www.javascriptkit.com/
- https://codes-sources.commentcamarche.net/source/list/javascript-6/last
- http://www.jgiesen.de/javascript/index.htm#JavaScript
- https://wiki.selfhtml.org/extensions/Selfhtml/example.php/Beispiel:HTML_input-range1.html
| | |