String.constructor (Property)

A reference to a constructor object.

Availability:

ECMAScript edition - 2
JavaScript - 1.0
JScript - 1.0
Internet Explorer - 3.02
Netscape - 2.0
Property/method value type:String object
JavaScript syntax:-myString.constructor

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

You can use this as one way of creating strings although it is more popular to use the new String() technique.

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 Navigator 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:String.fromCharCode(), String.prototype

Cross-references:

ECMA 262 edition 2 - section - 15.5.4.1

ECMA 262 edition 3 - section - 15.5.2