Questanda
javascript remove all commas from string
// Remove all commas from a string const removeCommas = (str) => str.replace(/,/g, '');