delete the last string from file in typescript

Solutions on MaxInterview for delete the last string from file in typescript by the best coders in the world

showing results for - "delete the last string from file in typescript"
Alya
19 Mar 2016
1if(x.lastIndexOf("\n")>0) {
2    return x.substring(0, x.lastIndexOf("\n"));
3} else {
4    return x;
5}
6
similar questions