Answers for "remove the comma only b/w numbers from text in js"

7

remove commas from string javascript

var stringWithCommas = 'a,b,c,d';
var stringWithoutCommas = stringWithCommas.replace(/,/g, '');
console.log(stringWithoutCommas);
Posted by: Guest on May-17-2020

Code answers related to "remove the comma only b/w numbers from text in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language