Answers for "string.replace all characters of a string javascript regex"

2

how to replace all characters in a string javascript

const string = "a, b, c, d, e, f";
string.replace(/,/g, '');
console.log(string) //a b c d e f
Posted by: Guest on March-24-2021

Code answers related to "string.replace all characters of a string javascript regex"

Code answers related to "Javascript"

Browse Popular Code Answers by Language