JavaScript中的String构造函数属性用于返回对象的字符串构造函数。此属性返回的函数只是对该函数的引用,而不是包含函数名称的字符串。 JavaScript数字构造函数,字符串构造函数和布尔构造函数分别返回函数Number() {[本机代码]},函数String() {[本机代码]}和函数Boolean() {[本机代码]}。
用法:
string.constructor
返回值:函数String() {[本地代码]}
例:
<!DOCTYPE html>
<html>
<head>
<title>
JavaScript String constructor Property
</title>
</head>
<body>
<h2>
Welcome to GeeksforGeeks
</h2>
<p>
Click the button to see string
contructor property.
</p>
<button onclick="myGeeks()">
click me
</button>
<p id="GFG"></p>
<!--Script to use string constructor property-->
<script>
function myGeeks() {
var str = "Hello World!";
document.getElementById("GFG").innerHTML
= str.constructor;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了String构造函数属性支持的浏览器:
- 谷歌浏览器
- 苹果Safari
- 火狐浏览器
- Opera
- 边
相关用法
- javascript Number constructor用法及代码示例
- javascript Array constructor用法及代码示例
- javascript Date constructor用法及代码示例
- javascript Boolean constructor用法及代码示例
- JavaScript RegExp()用法及代码示例
- javascript MouseEvent which用法及代码示例
- Javascript Math.LN2用法及代码示例
注:本文由纯净天空筛选整理自ProgrammerAnvesh大神的英文原创作品 JavaScript | String constructor Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。