JSFiddle - React, Tailwind, and code Playground
by shivaay123
HTML
<!DOCTYPE html>
<html>
<head>
<title>toFixed() Method</title>
</head>
<body>
<script>
var number1 = 45342.764;
document.write("number1 is : " + number1.toFixed(2));
document.write("<br />");
</script>
</body>
</html>