3. 変数を生成 <6p>



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