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