Regex para obter a primeira palavra após o Slash em URL
window.location.pathname.replace(/^\/([^\/]*).*$/, '$1');
Aditya
window.location.pathname.replace(/^\/([^\/]*).*$/, '$1');