JavaScript constructor 屬性
實例
返回創(chuàng)建Date對象的函數(shù)原型:
myDate.constructor;
結(jié)果輸出:
function Date() { [native code] }
嘗試一下 ?
定義和用法
constructor 屬性返回對創(chuàng)建此對象的 Date 函數(shù)的引用。
瀏覽器支持
所有主要瀏覽器都支持constructor屬性。
語法
Date.constructor
技術(shù)細(xì)節(jié)
返回值: | 函數(shù)對象。Date對象的函數(shù)原型。 |
---|---|
JavaScript 版本: | 1.1 |
更多建議: