3. 変数を生成 <6p>


<html>
<head><title>variable</title></head>
<body>
<script language="JavaScript">
<!--
//変数Aは"Hello"です
var A ="舘田 良雄です";
var b ="開発振興株式会社";
document.write(A);
document.write("<BR>");
document.write(b);
document.write("<BR>");
//-->
</script>
<noscript>
このページはJaveScriptが使用されています。
</noscript>
</body>
</html>