How can I parse a string with a comma thousand separator to a number? November 21, 2022 by Tarik Yes remove the commas: let output = parseFloat("2,299.00".replace(/,/g, '')); console.log(output);