Function.constructor (Property)

A reference to a constructor object.

Availability:

ECMAScript edition - 2
JavaScript - 1.1
JScript - 1.0
Internet Explorer - 3.02
Netscape - 3.0
Property/method value type:Function object
JavaScript syntax:-myFunction.constructor

The initial value of Function.prototype.constructor is the built-in Function constructor.

You can use this as one way of creating function objects although it is more popular to use the new Function() technique or to simply create them in the script source text.

This property is useful if you have an object that you want to clone but you don't know what sort of object it is. Simply access the constructor belonging to the object you have a reference to.

Netscape provides constructors for many objects, virtually all of them in fact, even when it is highly inappropriate to do so. MSIE is far more selective and there are some occasions when you might wish for a constructor that MSIE does not make available.

See also:Function call, Function.prototype

Property attributes:

DontEnum.

Cross-references:

ECMA 262 edition 2 - section - 15.3.4.1

ECMA 262 edition 3 - section - 15.3.2