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>