JavaScript Boolean.constructor()方法
作者:--
发布时间:2019-11-20
评论:0
阅读:4
javascript boolean.constructor()方法返回一个引用到创建实例的原型布尔函数。
语法
boolean.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] }