I have an array with the following kind of strings:
var Nameslist = [];
Nameslist.push("home.mytest1.James Thomas 14-47");
Nameslist.push("home.mytest1.George Simon 7-2");
Nameslist.push("home.mytest1.Sandy Kylie 3-15");
Now I want to remove the first part of each string in the array. The array should look like this after removing home.mytest1.
:
"James Thomas 14-47"
"George Simon 7-2"
"Sandy Kylie 3-15"
How can I do that?