myReplace("Let us go to the store", "store", "mall")
应该返回“让我们去商场”。'
testString: assert.deepEqual(myReplace("Let us go to the store", "store", "mall"), "Let us go to the mall");
- text: 'myReplace("He is Sleeping on the couch", "Sleeping", "sitting")
应该回归“他正坐在沙发上”。'
testString: assert.deepEqual(myReplace("He is Sleeping on the couch", "Sleeping", "sitting"), "He is Sitting on the couch");
- text: 'myReplace("This has a spellngi error", "spellngi", "spelling")
应该返回“这有一个拼写错误”。'
testString: assert.deepEqual(myReplace("This has a spellngi error", "spellngi", "spelling"), "This has a spelling error");
- text: 'myReplace("His name is Tom", "Tom", "john")
应该回归“他的名字是约翰”。'
testString: assert.deepEqual(myReplace("His name is Tom", "Tom", "john"), "His name is John");
- text: 'myReplace("Let us get back to more Coding", "Coding", "algorithms")
应该返回“让我们回到更多算法”。'
testString: assert.deepEqual(myReplace("Let us get back to more Coding", "Coding", "algorithms"), "Let us get back to more Algorithms");
```