Prev Demo
Exponential Method To Convert Large Decimal To Small
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <h1>Converting the large decimal to two digit decimal number with the exponential form</h1> <p>Click the below button to convert 2 numbers into an exponential notation.</p> <input type="button" value="Convert" onclick="Function()" /> <p id="myId"></p> <script> function Function() { var A = 2.74562; var R = A.toExponential(2); document.getElementById("myId").innerHTML = R; } </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output