該constructor屬性返回到創(chuàng)建示例的原型函數(shù)的引用。
對(duì)于JavaScript String,constructor屬性返回函數(shù) String(){[native code]}。
對(duì)于JavaScript Number,constructor屬性返回函數(shù) Number(){[native code]}。
對(duì)于JavaScript Date,constructor屬性返回函數(shù) Date(){[native code]}。
對(duì)于JavaScript Boolean,constructor屬性返回函數(shù) Boolean(){[native code]}。
對(duì)于JavaScript Array,constructor屬性返回函數(shù) Array(){[native code]}。
string.constructor
var str = 'Hello world'; str.constructor;測(cè)試看看?/?
所有瀏覽器都完全支持Constructor屬性:
屬性 | ![]() | ![]() | ![]() | ![]() | ![]() |
constructor | 是 | 是 | 是 | 是 | 是 |
返回值: | 返回創(chuàng)建該對(duì)象示例的函數(shù),即函數(shù) String(){[native code]} |
---|---|
JavaScript版本: | ECMAScript 1 |