Edit in JSFiddle

document.write("href : " + location.href + "<br>");
document.write("origin : " + location.origin + "<br>");
document.write("host : " + location.host + "<br>");
document.write("protocol : " + location.protocol + "<br>");
document.write("hostname : " + location.hostname + "<br>");
document.write("port : " + location.port + "<br>");
document.write("pathname : " + location.pathname + "<br>");
document.write("search : " + location.search + "<br>");
document.write("hash : " + location.hash + "<br>");