SELF-Treffen in Mannheim 2025

SELFHTML wird 30 Jahre alt! → Veranstaltungs-Ankündigung.

Beispiel:JS-Tut-07.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche
<script>
'use strict';
let
  zahl,
  text;

zahl = prompt('Bitte geben Sie eine Zahl ein!', zahl);

while (zahl >= 1) {
  text = zahl + ' - 1 = ' + (zahl-1);
  zahl = zahl -1;
  alert(text);
}
</script>