JavaScript constructor属性



定義と用法
 
constructor属性は、このオブジェクトを作成する配列関数への参照を返します.
 
構文
 
object.constructor
 
実例
例1
この例では、どのようにconstructor属性を使用するかを示します.
<script type="text/javascript">



var test=new Array();



if (test.constructor==Array)

{

document.write("This is an Array");

}

if (test.constructor==Boolean)

{

document.write("This is a Boolean");

}

if (test.constructor==Date)

{

document.write("This is a Date");

}

if (test.constructor==String)

{

document.write("This is a String");

}



</script>

出力:
This is an Array
TIY
例2
この例では、どのようにconstructor属性を使用するかを示します.
<script type="text/javascript">



function employee(name,job,born)

{

this.name=name;

this.job=job;

this.born=born;

}



var bill=new employee("Bill Gates","Engineer",1985);



document.write(bill.constructor);



</script>

出力:
function employee(name, jobtitle, born)

{this.name = name; this.jobtitle = job; this.born = born;}

TIY
 
TIY
トラック
この例では、constructorの属性の使い方を示します.
 
JavaScript Arayオブジェクト