I have a string:
`{"response":{"count":544271,"items":[358322758,358306517,358297876,358293716,358293542,358285919,358281793,358241319,358239216,358238181]}}`
I am trying to remove its first part using the replacement method:
badString.replace("{\"response\":{\"count\":", "aaa");
But, as a result, the string does not change, I get the original string! Why is this happening and how to fix it?