Javascript Array.constructor屬性


JavaScript陣列構造constructor屬性返回的參照,建立範例的原型陣列函式

語法

array.constructor


下面是引數的詳細資訊:

  • NA

返回值:

返回建立此物件的範例的功能。

例子:

<html>
<head>
<title>JavaScript Array constructor Property</title>
</head>
<body>
<script type="text/javascript">
   var arr = new Array( 10, 20, 30 );
   document.write("arr.constructor is:" + arr.constructor); 
</script>
</body>
</html>


這將產生以下結果:

arr.constructor is: function Array() { [native code] }