Grundgerüst und Gebrauch von Variablen:

Script:

<html><head>
<title>Javascript</title>
</head>
<body>

<script language="JavaScript">
<!--
var t;
var n=1.6;
var p;

t="Gebrauch von Variablen am Beispiel einer einfachen Multiplikation<br>";
p=n*2;

document.write(t);
document.write(n+"<br>");
document.write(p);

document.write("<br>oder<br>");

document.write(p+"="+n+"*2");
//-->
</script>
</body></html>

Ergebnis:


hier:

wichtig: