JavaScript: Beispiele: Unterschied zwischen den Versionen
Flinh1 (Diskussion | Beiträge) (→Quellen) |
Flinh1 (Diskussion | Beiträge) (→Quellen) |
||
Zeile 26: | Zeile 26: | ||
* 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 | * http://www.jgiesen.de/javascript/index.htm#JavaScript | ||
− | * https:// | + | * https://codes-sources.commentcamarche.net/source/list/javascript-6/294-jeux/top?page=2 |
---- | ---- |
Version vom 2. Oktober 2019, 13:26 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
- https://codes-sources.commentcamarche.net/source/list/javascript-6/294-jeux/top?page=2
| | |