TypeScript中的toExponential()方法用于将数字转换为其 index 形式。此方法根据给定参数返回以 index 表示形式表示给定数字对象的字符串。
用法:
number.toExponential( [fractionDigits] )
参数:此方法接受如上所述和以下描述的单个参数:
- fractionDigits:它是一个整数值,它指定小数点后的位数。它是一个可选参数。
返回值:TypeScript中的toExponential()方法返回一个字符串,该字符串以小数点前一位数字的形式用 index 表示法表示数字对象。
以下示例说明了TypeScript中toExponential()方法的用法方式:
范例1:
打字稿
// Define a number to find the
// exponential notation
var num1 = 2762.30
// Find the exponential value
var val = num1.toExponential();
// Display the value
console.log(val)
输出:
2.7623e+3
范例2:
打字稿
// Define a number to find the
// exponential notation
var num2 = 23456
// Find the exponential value
// with two digits after the
// decimal point
var val = num2.toExponential(2);
// Display the value
console.log(val)
输出:
2.34e+4
相关用法
- Javascript toExponential()用法及代码示例
- Typescript String charAt()用法及代码示例
- Typescript String charCodeAt()用法及代码示例
- Typescript String concat()用法及代码示例
- Typescript String indexOf()用法及代码示例
- Typescript String lastIndexOf()用法及代码示例
- Typescript String localeCompare()用法及代码示例
- Typescript String replace()用法及代码示例
- Typescript String search()用法及代码示例
- Typescript String slice()用法及代码示例
- Typescript Array unshift()用法及代码示例
- Typescript Array toString()用法及代码示例
- Typescript Array splice()用法及代码示例
- Typescript Array sort()用法及代码示例
- Typescript Array some()用法及代码示例
- Typescript Array slice()用法及代码示例
- Typescript Array shift()用法及代码示例
- Typescript Array reverse()用法及代码示例
- Typescript Array reduceRight()用法及代码示例
- Typescript Array reduce()用法及代码示例
注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 TypeScript | toExponential() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。