JavaScript String constructor 属性

 JavaScript String 对象

constructor属性返回到创建示例的原型函数的引用。

对于JavaScript String,constructor属性返回函数 String(){[native code]}

对于JavaScript Number,constructor属性返回函数 Number(){[native code]}

对于JavaScript Date,constructor属性返回函数 Date(){[native code]}

对于JavaScript Boolean,constructor属性返回函数 Boolean(){[native code]}

对于JavaScript Array,constructor属性返回函数 Array(){[native code]}

语法:

string.constructor
var str = 'Hello world';
str.constructor;
测试看看‹/›

浏览器兼容性

所有浏览器都完全支持Constructor属性:

属性
constructor

技术细节

返回值:返回创建该对象示例的函数,即函数 String(){[native code]}
JavaScript版本:ECMAScript 1

 JavaScript String 对象