Question:
b" Given a string:s = "Test abc test test abc test test test abc test test abc";This seems to only remove the first occurrence of abc in the string above:s = s.replace('abc', '');How do I replace all occurrences of it? "
Solution : https://worcraft-algeria-dz.com/howto/24/How-do-I-replace-all-occurrences-of-a-string-in-JavaScript? | Source : https://worcraft-algeria-dz.com/