Get-the-Courrent-Directory-Name-in-JavaScript

var location = window.location.pathname;
var directoryPath = location.substring(0, location.lastIndexOf("/")+1);
Borma