xxxxxxxxxx
const inputString = "Hello, World, this, is, a, string, with, commas,";
const newString = inputString.replace(',', '');
console.log(newString);
xxxxxxxxxx
var stringWithCommas = 'a,b,c,d';
var stringWithoutCommas = stringWithCommas.replace(/,/g, '');
console.log(stringWithoutCommas);
xxxxxxxxxx
var purpose = "I, Just, want, a, quick, answer!";
// Removing the first occurrence of a comma
var result = purpose.replace(",", "");
// Removing all the commas
var result = purpose.replace(/,/g, "");
xxxxxxxxxx
let inputString = "Hello, World! This, is a sample, string.";
let stringWithoutCommas = inputString.replace(/,/g, "");
console.log(stringWithoutCommas);