The replace()
method searches a string for a specified substring (of a regular expression) and replaces the specified substring with the new string.
Below is the syntax for the replace()
function in JavaScript:
The code snippet below illustrates the usage of the replace()
function in JavaScript:
// original stringvar str = "I am working in Python"console.log(str)// replace functionstr = str.replace("Python","JavaScript")console.log(str)