@@Matthias Apsel
Wäre dies ein anderer und vielleicht besserer Kompromiss?
Warum soll es ein Schieberegler sein, wenn es um ein Beispiel fürs output
-Element geht?
Einfach ein Eingabefeld <input type="number"/>
und die Ausgabe einer Berechnung entsprechend der Eingabe.
Oder auch zweier Berechnungen; das kann das Quadrat und der Kubus sein.
Mir wäre noch eingefallen: zwei Eingabefelder für n und k und die Berechnung der Anzahl der Kombinationen und Variationen von k aus n Elementen.
function rechne() { wert.value = parseInt(a.value);
input.value
meintest du.
quad.value = Math.pow(wert.value,2); kub.value = Math.pow(wert.value,3); }
Nicht dass das einen großen Unterschied machen würde, aber warum so teure Math.pow
-Operationen?
function rechne()
{
var a = parseInt(a.value);
var q = a * a;
var c = q * a;
// Ausgabe
}
LLAP 🖖
--
“I love to go to JS conferences to speak about how to avoid using JavaScript. Please learn CSS & HTML to reduce your JS code bloat.” —Estelle Weyl
“I love to go to JS conferences to speak about how to avoid using JavaScript. Please learn CSS & HTML to reduce your JS code bloat.” —Estelle Weyl