how to get last / from window.location.pathname code example
Example: javascript get last url segment
console.log(this.href.substring(this.href.lastIndexOf('/') + 1));
console.log(this.href.substring(this.href.lastIndexOf('/') + 1));