myReplace('Let us go to the store', 'store', 'mall')
应该返回 'Let us go to the 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')
应该返回 'He is Sitting on the couch'。"
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')
应该返回 'This has a spelling error'。"
testString: assert.deepEqual(myReplace("This has a spellngi error", "spellngi", "spelling"), "This has a spelling error");
- text: "myReplace('His name is Tom', 'Tom', 'john')
应该返回 'His name is 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')
应该返回 'Let us get back to more Algorithms'。"
testString: assert.deepEqual(myReplace("Let us get back to more Coding", "Coding", "algorithms"), "Let us get back to more Algorithms");
```