例
constructor屬性返回一個正則表達式的構造函數:
var patt = new RegExp("Hello World","g");
var res = patt.constructor;
資源的結果將是:
function RegExp() { [native code] }
試一試» 定義和用法
在JavaScript中,constructor屬性返回一個對象的構造函數。
返回值是對函數的引用,而不是函數的名稱:
對於JavaScript 正則表達式的構造屬性返回起作用RegExp() {[本地代碼]}
對於JavaScript 號碼構造屬性返回功能Number() {[本地代碼]}
對於JavaScript 字符串構造屬性返回函數String() {[本地代碼]}
瀏覽器支持
屬性 | |||||
---|---|---|---|---|---|
constructor | 是 | 是 | 是 | 是 | 是 |
句法
RegExpObject .constructor
技術細節
返回值: | 功能RegExp() {[本地代碼]} |
---|---|
JavaScript的版本: | 1.1 |
<JavaScript的RegExp對象