编写一个函数,接收一个字符串和两个子字符串作为参数,第一个子字符串是要被替换的部分,第二个子字符串是替换后的部分。函数应返回替换后的新字符串。
function replaceString(str, oldSubstr, newSubstr) {
// 你的代码,可以使用String.prototype.replace()方法,但注意可能需要使用正则表达式进行全局替换
}
console.log(replaceString('hello world', 'world', 'JavaScript')); // 输出 'hello JavaScript'