I have a string like this:
var str = "T h i s i s a t e s t";
// 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Now I want to remove this range: [11 - 13]
, And I want this output:
var newstr = "T h i s i s a t e s t";
// 1 2 3 4 5 6 7 8 9 10 14 15 16 17
How can I do that?