javascript replace all periods

Solutions on MaxInterview for javascript replace all periods by the best coders in the world

showing results for - "javascript replace all periods"
Debora
12 Jan 2018
1mystring = mystring.replace(/\./g,' ')
Valery
26 Mar 2020
1var lotsofPeriods="How... are. you?";
2var noPeriods = lotsofPeriods.replace(/./g,"");//"How are you?"
3