I have a path and I am trying to pop off everything after the last /, so ‘folder’ in this case, leaving the newpath as C://local/drive/folder/.
I tried to pop off the last / using pop(), but can’t get the first part of the path to be the new path:
var path = C://local/drive/folder/folder
var newpath = path.split("/").pop();
var newpath = newpath[0]; //should be C://local/drive/folder/
How can I accomplish this?
Use
.slice()instead ofpop()If you also need the last part, then just use
.pop(), but first store the Array in a separate variable.Now
lasthas the last part, andfirsthas everything before the last part.Another solution is to use
.lastIndexOf()on the string.