3. 変数を生成 <6p>


<html>
<head><title>variable</title></head>
<body>
<script language="JavaScript">
<!--
//変数Aは"Hello"です
a =309;
b ="Hello";
document.write(a);
document.write("<br>");
document.write(b);
//-->
</script>
<noscript>
このページはJaveScriptが使用されています。
</noscript>
</body>
</html>