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