Answers for "js replace all instances of a character"

6

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 "js replace all instances of a character"

Code answers related to "Javascript"

Browse Popular Code Answers by Language