JavaScript中constructor()方法的使用简介
编程学习 2021-07-04 21:48www.dzhlxh.cn编程入门
这篇文章主要介绍了JavaScript中constructor()方法的使用简介,是JS入门学习中的基础知识,需要的朋友可以参考下
JavaScript Boolean.constructor()方法返回一个引用到创建实例的原型布尔函数。
语法
boolean.constructor()
返回值:
- NA
狼蚁网站SEO优化是参数的详细信息:
返回创建此对象的实例。
例子:
<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] }