javascript get domain code example
Example 1: javascript get current url
var currentUrl = window.location.href;
Example 2: javascript get domain name from string
const url = 'https://www.mydomain.com/blog?search=hello&world';
const domain = (new URL(url)).hostname.replace('www.','');
Example 3: javascript get base url
console.log(window.location.origin);
Example 4: how to extract domain name of url of current page in javascript
var url = window.location.href;
var domain = url.replace('http://','').replace('https://','').split(/[/?
Example 5: javascript get domain
window.location.hostname