- text: '<code>myReplace("Let us go to the store", "store", "mall")</code>应该返回“让我们去商场”。'
testString: 'assert.deepEqual(myReplace("Let us go to the store", "store", "mall"), "Let us go to the mall", "<code>myReplace("Let us go to the store", "store", "mall")</code> should return "Let us go to the mall".");'
- text: '<code>myReplace("He is Sleeping on the couch", "Sleeping", "sitting")</code>应该回归“他正坐在沙发上”。'
testString: 'assert.deepEqual(myReplace("He is Sleeping on the couch", "Sleeping", "sitting"), "He is Sitting on the couch", "<code>myReplace("He is Sleeping on the couch", "Sleeping", "sitting")</code> should return "He is Sitting on the couch".");'
- text: '<code>myReplace("This has a spellngi error", "spellngi", "spelling")</code>应该返回“这有一个拼写错误”。'
testString: 'assert.deepEqual(myReplace("This has a spellngi error", "spellngi", "spelling"), "This has a spelling error", "<code>myReplace("This has a spellngi error", "spellngi", "spelling")</code> should return "This has a spelling error".");'
- text: '<code>myReplace("His name is Tom", "Tom", "john")</code>应该回归“他的名字是约翰”。'
testString: 'assert.deepEqual(myReplace("His name is Tom", "Tom", "john"), "His name is John", "<code>myReplace("His name is Tom", "Tom", "john")</code> should return "His name is John".");'
- text: '<code>myReplace("Let us get back to more Coding", "Coding", "algorithms")</code>应该返回“让我们回到更多算法”。'
testString: 'assert.deepEqual(myReplace("Let us get back to more Coding", "Coding", "algorithms"), "Let us get back to more Algorithms", "<code>myReplace("Let us get back to more Coding", "Coding", "algorithms")</code> should return "Let us get back to more Algorithms".");'
```
</section>
## Challenge Seed
<sectionid='challengeSeed'>
<divid='js-seed'>
```js
function myReplace(str, before, after) {
return str;
}
myReplace("A quick brown fox jumped over the lazy dog", "jumped", "leaped");