boolean.constructorプロパティは、Booleanオブジェクトのコンストラクタへの参照が格納されているプロパティ。
構文
boolean.constructor
サンプル
<script type="text/javascript">
var $sampleBoolean = new Boolean( true );
document.write( '$sampleBoolean.constructor: ' + $sampleBoolean.constructor + '<br />' );
</script>
var $sampleBoolean = new Boolean( true );
document.write( '$sampleBoolean.constructor: ' + $sampleBoolean.constructor + '<br />' );
</script>
↓↓↓出力結果↓↓↓