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