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