js get current url code example
Example 1: js get base url
var url = window.location.origin;
Example 2: javascript get current url
var currentUrl = window.location.href;
Example 3: get site url javascript
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"
Example 4: get actual url in variable
var currentLocation = window.location;
Example 5: get the current url javascript
window.location.pathname;
window.location.href;
window.location.origin;
Example 6: javascript url check
const isAbsoluteUrl = url => /^[a-z][a-z0-9+.-]*:/.test(url);
isAbsoluteUrl('https://1loc.dev');
isAbsoluteUrl('https://1loc.dev/foo/bar');
isAbsoluteUrl('1loc.dev');
isAbsoluteUrl('//1loc.dev');