JavaScript: Beispiele: Unterschied zwischen den Versionen
Flinh1 (Diskussion | Beiträge) (→Quellen) |
Flinh1 (Diskussion | Beiträge) (→Quellen) |
||
Zeile 25: | Zeile 25: | ||
* http://www.javascriptkit.com/ | * http://www.javascriptkit.com/ | ||
* https://codes-sources.commentcamarche.net/source/list/javascript-6/last | * https://codes-sources.commentcamarche.net/source/list/javascript-6/last | ||
+ | * http://www.jgiesen.de/javascript/index.htm#JavaScript | ||
---- | ---- |
Version vom 1. Oktober 2019, 21:07 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
- http://www.jgiesen.de/javascript/index.htm#JavaScript
| | |