constructor
String
instance propertyS2C Home
« Globals « String « constructor
Description
Returns a reference to the function that created the prototype.
Syntax
Signature | Description |
---|---|
aString.constructor | Returns a reference to the function that created the prototype. |
Parameters
None.
Examples
The code below displays the prototype function of String
.
aString = new String('happychappy');
alert('String constructor is ' + String.constructor);
Related Tutorials
JavaScript Basic Tutorials - Lesson 8 - Strings