constructor
优质
小牛编辑
133浏览
2023-12-01
描述 (Description)
构造函数返回对创建实例原型的字符串函数的引用。
语法 (Syntax)
其语法如下 -
string.constructor
返回值 (Return Value)
返回创建此对象实例的函数。
例子 (Example)
<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>
输出 (Output)
str.constructor is: function String() { [native code] }