JSFiddle - React, Tailwind, and code Playground
by coiscir
JavaScript
// http://stackoverflow.com/q/18102383
(function () {
var location = {
href: 'http://localhost:8080/MyApp/MyScreen?userName=ccc'
};
var baseUrl = "http://localhost:8080/MyApp";
var pagePath = location.href.replace(baseUrl, "");
console.log(pagePath);
})();