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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。