Try it
Javascript
Jquery
Angular
Learn Angular
Learn Javascript
Learn Bootstrap
Learn jQuery
ToFixed-2
ToFixed
-2
<!DOCTYPE html> <html> <head> <title>Welcome to LearnKode - A code learning platform</title> </head> <body> <button onclick="convertToFixed()">Display the fixed number</button> <p id="sample"></p> <script> function convertToFixed() { var num = 6.76549; var exp = num.toFixed(); document.getElementById("sample").innerHTML = exp; } </script> </body> </html>
Output
×
Save This try
Title
Description
<p><code>ToFixed</code>-2</p>