Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to use the replace method in javascript

let string = 'soandso, my name is soandso';

let replaced = string.replace(/soandso/gi, 'Dylan');

console.log(replaced); //Dylan, my name is Dylan
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #replace #method #javascript
ADD COMMENT
Topic
Name
1+6 =