Copyright © tutorialspoint.com
This returns a reference to the string function that created the instance's prototype.
string.constructor |
Here is the detail of parameters:
NA
Returns the function that created this object's instance.
<html>
<head>
<title>JavaScript String constructor Method</title>
</head>
<body>
<script type="text/javascript">
var str = new String( "This is string" );
document.write("str.constructor is:" + str.constructor);
</script>
</body>
</html>
|
This will produce following result:
str.constructor is: function String() { [native code] }
|
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com