当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Typescript toExponential()用法及代码示例


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

相关用法


注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 TypeScript | toExponential() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。