|
|
|
|
|
by scottfr
2454 days ago
|
|
There are also issues with the JS examples. For example: """ Remove all occurrences of string w from string s1, and store the result in s2. var s2 = s1.replace(w, ''); """ Since w is a string, this will only replace the first occurrence, not all occurrences. |
|