console.log("window.location.hostname : " + window.location.hostname);
console.log("location.hostname : " + location.hostname);
console.log("document.domain : " + document.domain);
console.log("document.URL : " + document.URL);
console.log("document.location.href : " + document.location.href);
console.log("document.location.origin : " + document.location.origin);
console.log("document.location.hostname : " + document.location.hostname);
console.log("document.location.host : " + document.location.host);
console.log("document.location.pathname : " + document.location.pathname);

window.location.hostname : devnote.domain.com
location.hostname : devnote.domain.com
document.domain : devnote.domain.com
document.URL : http://devnote.domain.com:8080/SSOLogin.jsp
document.location.href : http://devnote.domain.com:8080/SSOLogin.jsp
document.location.origin : http://devnote.domain.com:8080
document.location.hostname : devnote.domain.com
document.location.host : devnote.domain.com:8080
document.location.pathname : /SSOLogin.jsp