How to parse a string with commas to a number in Node.js

1 Answer

0 votes
const str = '17,970,8200.50';

const num = parseFloat(str.replace(/,/g, ''));

console.log(num); 
 
 
 
 
 
/*
run:
 
179708200.5
 
*/

 



answered Feb 13, 2022 by avibootz

Related questions

1 answer 183 views
1 answer 207 views
3 answers 202 views
2 answers 146 views
2 answers 224 views
224 views asked Feb 27, 2020 by avibootz
3 answers 221 views
221 views asked May 24, 2022 by avibootz
...