JavaScript: Beispiele: Unterschied zwischen den Versionen
Flinh1 (Diskussion | Beiträge) |
Flinh1 (Diskussion | Beiträge) (→Quellen) |
||
Zeile 23: | Zeile 23: | ||
== Quellen == | == Quellen == | ||
− | * | + | * http://www.javascriptkit.com/ |
* https://codes-sources.commentcamarche.net/source/list/javascript-6/last | * https://codes-sources.commentcamarche.net/source/list/javascript-6/last | ||
Version vom 1. Oktober 2019, 20:22 Uhr
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
| | |