ES6 constructor()
Javascript Boolean constructor()方法返回对创建实例原型的Boolean函数的引用。
使用以下语法创建布尔构造函数()方法。它返回创建此对象实例的函数。
例
<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] }
该原型属性可以让你的属性和方法添加到任何对象(数字,布尔值,字符串和日期等)。注 - Prototype是一个全局属性,几乎可用于所有对象。使用以下语法创建布尔原型。object.prototype.name = ...