You can use toFixed() to do that

var twoPlacedFloat = parseFloat(yourString).toFixed(2)
Answer from Mahesh Velaga on Stack Overflow
๐ŸŒ
MDN Web Docs
developer.mozilla.org โ€บ en-US โ€บ docs โ€บ Web โ€บ JavaScript โ€บ Reference โ€บ Global_Objects โ€บ parseFloat
parseFloat() - JavaScript | MDN
The characters accepted by parseFloat() are plus sign (+), minus sign (- U+002D HYPHEN-MINUS), decimal digits (0 โ€“ 9), decimal point (.), exponent indicator (e or E), and the "Infinity" literal.
๐ŸŒ
Attacomsian
attacomsian.com โ€บ blog โ€บ javascript-parse-float-two-decimal-places
Parse float with 2 decimal places in JavaScript
November 27, 2022 - The toFixed() method takes a number as input and returns a string representation of the number formatted to 2 decimal places. const str1 = '2.567' const res1 = parseFloat(str1).toFixed(2) console.log(res1) // 2.57 const str2 = '5' const res2 ...
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ javascript โ€บ how-to-parse-float-with-two-decimal-places-in-javascript
How to Parse Float with Two Decimal Places in JavaScript? - GeeksforGeeks
Below are the approaches to parse ... the string isn't numeric, it returns NaN. To limit the number to two decimal places, use toFixed(2), which rounds the result....
Published ย  July 23, 2025
๐ŸŒ
TutorialsPoint
tutorialspoint.com โ€บ how-to-parse-float-with-two-decimal-places-in-javascript
How to parse float with two decimal places in JavaScript?
To parse float with two decimal places, use the concept of toFixed(2). Following is the code โˆ’ ยท var price = 178932.89; var tax = 7.9; var totalPrice = price*tax; console.log("The actual value="+totalPrice); var gettingTwoPlacedValues = parseFloat(totalPrice).toFixed(2); console.log("After ...
๐ŸŒ
IncludeHelp
includehelp.com โ€บ code-snippets โ€บ how-to-parse-float-with-two-decimal-places-in-javascript.aspx
How to parse float with two decimal places in JavaScript?
To parse float with two decimal places, use the combination of parseFloat() and .toFixed() method. The parseFloat() method will parse the given string to float and .toFixed() method rounds the float value to a given number of digits. Below is the syntax to parse float with two decimal places: ...
๐ŸŒ
Linux Hint
linuxhint.com โ€บ parse-float-with-two-decimal-places-javascript
How to Parse Float With Two Decimal Places in JavaScript?
Linux Hint LLC, [email protected] 1210 Kelly Park Circle, Morgan Hill, CA 95037 Privacy Policy and Terms of Use
๐ŸŒ
SourceFreeze
sourcefreeze.com โ€บ home โ€บ parse float with 2 decimals in javascript
Parse Float with 2 decimals in javascript - Source Freeze
March 21, 2023 - To Parse Float with 2 Decimals first use toFixed() method then specify the decimals after that you can round up or down by specify Math.floor or Math.ceil or Math.round based on the need.
Find elsewhere
๐ŸŒ
EyeHunts
tutorial.eyehunts.com โ€บ home โ€บ javascript string to float 2 decimal | example code
JavaScript string to float 2 decimal | Example code
June 29, 2022 - Use toFixed() function to parse the string to float 2 decimal in JavaScript. var twoPlacedFloat = parseFloat(yourString).toFixed(2) If you need performance (like in games): Math.round(number * 100) / 100 ยท Itโ€™s about 100 times as fast as ...
๐ŸŒ
Bobby Hadz
bobbyhadz.com โ€บ blog โ€บ javascript-format-number-to-two-decimal-places
Format a number to 2 Decimal places in JavaScript | bobbyhadz
Copied!console.log(parseFloat('6.178')); // ๐Ÿ‘‰๏ธ 6.178 console.log(typeof parseFloat('6.178')); // ๐Ÿ‘‰๏ธ number ยท You can define a reusable function that takes care of the conversion and formats the number to 2 decimal places.
๐ŸŒ
W3Schools
w3schools.com โ€บ jsref โ€บ jsref_parsefloat.asp
JavaScript parseFloat() Method
parseFloat("40.00"); parseFloat(" 40 "); parseFloat("40 years"); parseFloat("40H") parseFloat("H40"); Try it Yourself ยป ... If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail: sales@w3schools.com ยท If you want to report an error, or if you want to make a suggestion, send us an e-mail: help@w3schools.com ยท HTML Tutorial CSS Tutorial JavaScript Tutorial How To Tutorial SQL Tutorial Python Tutorial W3.CSS Tutorial Bootstrap Tutorial PHP Tutorial Java Tutorial C++ Tutorial jQuery Tutorial
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ how-to-parse-float-with-two-decimal-places-in-typescript
How to Parse Float with Two Decimal Places in TypeScript ? - GeeksforGeeks
April 28, 2025 - Example: The below example uses bitwise OR operations to round the number 123.45678 to two decimal places, resulting in 123.45. ... const input: number = 123.45678; const output: number = ((input * 100) | 0) / 100; console.log(output); ... JavaScript provides an inbuilt parseFloat() method to parse a string and returns a floating-point number.
๐ŸŒ
MDN Web Docs
developer.mozilla.org โ€บ en-US โ€บ docs โ€บ Web โ€บ JavaScript โ€บ Reference โ€บ Global_Objects โ€บ Number โ€บ toFixed
Number.prototype.toFixed() - JavaScript | MDN
The toFixed() method of Number values returns a string representing this number using fixed-point notation with the specified number of decimal places. function financial(x) { return Number.parseFloat(x).toFixed(2); } console.log(financial(123.456)); // Expected output: "123.46" console.lo...
๐ŸŒ
MSR
rajamsr.com โ€บ home โ€บ javascript parsefloat(): how to avoid common mistakes
JavaScript ParseFloat(): How to Avoid Common Mistakes | MSR - Web Dev Simplified
January 28, 2024 - One way to address this issue is using the JavaScript toFixed() function. let value1 = parseFloat("0.1"); let value2 = parseFloat("0.2"); let sum = value1 + value2; // sum is 0.3000000000000000444089209850062616169452667236328125 let sumString ...
๐ŸŒ
Three.js
discourse.threejs.org โ€บ discussion
๐Ÿ™Š Change floating-point to 2 decimal places? - Discussion - three.js forum
Before I go down this rabbit hole further. If you could share your wisdom/experience. Iโ€™m assuming with certain large floating-point numbers is a known problem and CAN NOT be converted to 2 decimal places. As these large numbers appear to be an error, it is the way things work with my current ...
Published ย  July 24, 2018
๐ŸŒ
Squash
squash.io โ€บ how-to-round-to-2-decimal-places-in-javascript
How To Round To 2 Decimal Places In Javascript
We then use the toFixed() method with the argument 2 to round the number to two decimal places. The result is stored in the variable roundedNumber and printed to the console. It's important to note that the toFixed() method returns a string, ...
๐ŸŒ
Copahost
copahost.com โ€บ home โ€บ javascript parsefloat: examples and variations of this function
Javascript parseFloat: Examples and variations of this function - Copahost
July 16, 2023 - We have to pass a number in the toFixed method and the resulting integer will have that many numbers of digits after the decimal. The following example shows how to use the toFixed method with the parseFloat.