myReplace("Let us go to the store", "store", "mall")
should return "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")
should return "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("I think we should look up there", "up", "Down")
should return "I think we should look down there".
testString: assert.deepEqual(myReplace("I think we should look up there", "up", "Down"), "I think we should look down there");
- text: myReplace("This has a spellngi error", "spellngi", "spelling")
should return "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")
should return "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")
should return "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");
```