Answers for "javascript replace tag"

0

javascript replace tag

String.prototype.replace()
The replace() method returns a new string with some or all matches of a pattern replaced by a replacement.
The pattern can be a string or a RegExp, and the replacement can be a string or a function called for each match. 
If pattern is a string, only the first occurrence will be replaced.
// example
var str = "JavaScript replace method test";
var res = str.replace("test", "success");
Posted by: Guest on May-01-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language