當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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