【零基础入门TypeScript】数字
目录
类似TypeScript的JavaScript支持数字值作为Number对象。数字对象将数字文字转换为数字类的实例。Number类充当包装器,允许将数字文字作为对象进行操作。
语法
var var_name = new Number(value)
如果将非数字参数作为参数传递给Number的构造函数,它将返回NaN(Not–a–Number)
下表列出了Number对象的一组属性?
S.No. | Property & Description |
---|---|
1. | MAX_VALUE JavaScript中一个数字的最大可能值可以是1.7976931348623157E+308。 |
2. | MIN_VALUE JavaScript中一个数字的最小可能值可以是5E-324。 |
3. | NaN 等于一个非数字的值。 |
4. | NEGATIVE_INFINITY 小于MIN_value的值。 |
5. | POSITIVE_INFINITY 大于MAX_value的值。 |
6. | prototype Number对象的静态属性。使用原型属性可以为当前文档中的Number对象指定新的属性和方法。 |
7. | constructor 返回创建此对象实例的函数。默认情况下,这是Number对象。 |
例子
console.log("TypeScript Number Properties: ");
console.log("Maximum value that a number variable can hold: " + Number.MAX_VALUE);
console.log("The least value that a number variable can hold: " + Number.MIN_VALUE);
console.log("Value of Negative Infinity: " + Number.NEGATIVE_INFINITY);
console.log("Value of Negative Infinity:" + Number.POSITIVE_INFINITY);
在编译时,它将用JavaScript生成相同的代码。
其输出如下?
TypeScript Number Properties: Maximum value that a number variable can hold: 1.7976931348623157e+308 The least value that a number variable can hold: 5e-324 Value of Negative Infinity: -Infinity Value of Negative Infinity:Infinity
示例:NaN
var month = 0
if( month<=0 || month >12) {
month = Number.NaN
console.log("Month is "+ month)
} else {
console.log("Value Accepted..")
}
在编译时,它将用JavaScript生成相同的代码。
其输出如下?
Month is NaN
示例:prototype
function employee(id:number,name:string) {
this.id = id
this.name = name
}
var emp = new employee(123,"Smith")
employee.prototype.email = "smith@abc.com"
console.log("Employee 's Id: "+emp.id)
console.log("Employee's name: "+emp.name)
console.log("Employee's Email ID: "+emp.email)
编译时,它将生成以下JavaScript代码?
//Generated by typescript 1.8.10
function employee(id, name) {
this.id = id;
this.name = name;
}
var emp = new employee(123, "Smith");
employee.prototype.email = "smith@abc.com";
console.log("Employee 's Id: " + emp.id);
console.log("Employee's name: " + emp.name);
console.log("Employee's Email ID: " + emp.email);
其输出如下?
Employee’s Id: 123 Emaployee’s name: Smith Employee’s Email ID: smith@abc.com
数字方法
Number对象仅包含默认方法,这些方法是每个对象定义的一部分。下面列出了一些常用的方法?
S.No. | Methods & Description |
---|---|
1. | toExponential() 强制数字以指数表示法显示,即使该数字在JavaScript通常使用标准表示法的范围内。 |
2. | toFixed() 使用小数点右侧的特定位数格式化数字。 |
3. | toLocaleString() 返回当前数字的字符串值版本,其格式可能因浏览器的本地设置而异。 |
4. | toPrecision() 定义一个数字要显示的总位数(包括小数点左右的位数)。负精度会引发错误。 |
5. | toString() 返回数字值的字符串表示形式。向函数传递基数,基数是一个介于2和36之间的整数,指定用于表示数值的基数。 |
6. | valueOf() 返回数字的基元值。 |
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!