扫码一下
查看教程更方便
constructor 属性返回对 Array 对象属性创建的函数。
语法如下:
array.constructor
返回创建此对象实例的函数。
所有主流浏览器都支持 constructor 属性。
<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] }