Boolean

種類オブジェクト
書式 new Boolean(真偽)
解説
Boolean(ブーリアン/真偽)オブジェクトです。引数はfalseまたはtrueを指定できます。省略した場合にはfalseになります。
サンプルコード
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<style type="text/css"><!--
body { margin:0px; }
form { position:absolute; top:10;left:10px; }
--></style>
<script type="text/javascript"><!--
window.onload = function()
{
flag = new Boolean(true);
document.getElementById("txtField").value = flag;
}
// --></script>
</head>
<body>
<img src="Default.png">
<form>
<input type="text" id="txtField" size=40"><br>
</form>
</body>
</html>
実際のスクリプトをダウンロード