扫码一下
查看教程更方便
constructor 属性返回对创建此对象的 Boolean 函数的引用。
它的语法如下
number.constructor()
返回创建此对象实例的函数。
所有主流浏览器都支持 constructor 属性。
<html>
<head>
<title>JavaScript constructor() Method</title>
</head>
<body>
<script type = "text/javascript">
var num = new Number( 177.1234 );
document.write("num.constructor() is : " + num.constructor);
</script>
</body>
</html>
输出结果
num.constructor() is : function Number() { [native code] }