3. 変数を生成 <7p>


<html>
<head><title>variable</title></head>
<body>
<script language="JavaScript">
<!--
//変数Aは"Hello"です
a=20
b=15
a=--b

document.write(a);
document.write("<BR>");

//-->
</script>
<noscript>
このページはJaveScriptが使用されています。
</noscript>
</body>
</html>