change a letter in a word in javascript code example
Example: change word in string javascript
let str = "Hello World!";
let res = str.replace("World", "Birds");
let str = "Hello World!";
let res = str.replace("World", "Birds");