JavaScript中constructor()方法的使用简介
JavaScriptBoolean.constructor()方法返回一个引用到创建实例的原型布尔函数。
语法
boolean.constructor()
返回值:
- NA
下面是参数的详细信息:
返回创建此对象的实例。
例子:
<html>
<head>
<title>JavaScriptconstructor()Method</title>
</head>
<body>
<scripttype="text/javascript">
varbool=newBoolean();
document.write("bool.constructor()is:"+bool.constructor);
</script>
</body>
</html>
这将产生以下结果:
bool.constructor()is:functionBoolean(){[nativecode]}