let string = 'soandso, my name is soandso'; let replaced = string.replace(/soandso/gi, 'Dylan'); console.log(replaced); //Dylan, my name is Dylan