Introduction
In this article, I am describing the toExponential method of the number object method in the TypeScript.
toExponential() Method
Syntax
- array.toExponential(number)
number is an optional parameter. An integer between 0 and 20 specifying the number of digits in the notation after the decimal point. Many digits as necessary to represent the value.
The following example shows how to use the toExponential() method in TypeScript. We get a mass from the user in kilograms and then use Einstein's mass-energy equation to convert the kilograms to Joules and display the result in exponential format to 4 digits. Because a small amount of mass stores a large amount of energy, the exponential format is more convenient in this example.
Function
- toExponential(Mass: number) {
- var c = 2.99792458
- var E = Mass * c * c;
- var span = document.createElement("span");
- span.innerText = "toExponential Method \n The amount of energy is -> " + E.toExponential(4) + "\n";
- document.body.appendChild(span);
- }
Complete Program
toExponential.ts
- class ToExponential_Method {
- toExponential(Mass: number) {
- var c = 2.99792458
- var E = Mass * c * c;
- var span = document.createElement("span");
- span.innerText = "toExponential Method \n The amount of energy is -> " + E.toExponential(4) + "\n";
- document.body.appendChild(span);
- }
- }
- window.onload = () => {
- var obj = new ToExponential_Method();
- var Mass = parseFloat(prompt("Enter a mass in Kg."));
- obj.toExponential(Mass);
- };
toExponential_MethodDemo.htm
- <!DOCTYPE html>
- <html lang="en"
- xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta charset="utf-8" />
- <title>TypeScript HTML App</title>
- <link rel="stylesheet" href="app.css" type="text/css" />
- <script src="toExponential.js"></script>
- </head>
- <body>
- <h3 style="color:blueviolet">toExponential() Number Object Method In TypeScript</h3>
- <div id="content"/>
- </body>
- </html>
toExponential.js
- var ToExponential_Method = (function() {
- function ToExponential_Method() {}
- ToExponential_Method.prototype.toExponential = function(Mass) {
- var c = 2.99792458;
- var E = Mass * c * c;
- var span = document.createElement("span");
- span.innerText = "toExponential Method \n The amount of energy is -> " + E.toExponential(4) + "\n";
- document.body.appendChild(span);
- };
- return ToExponential_Method;
- })();
- window.onload = function() {
- var obj = new ToExponential_Method();
- var Mass = parseFloat(prompt("Enter a mass in Kg."));
- obj.toExponential(Mass);
- };
Output 1
Enter a mass in kg.

Output 2


Join the conversation! Your thoughts help the community grow.