get site url javascript

JavaScript
var currentUrl = window.location.href;document.URL
> "http://example.com/page1.html"

document.location.href
> "http://example.com/page1.html"

document.location.pathname
> "/page1.html"

document.location.origin
> "http://example.com"var currentLocation = window.location;
Source

Also in JavaScript: