// es6
const extractDomain = url => url.split('/')[url.indexOf('://') > -1 ? 2 : 0].split(':')[0];
// es5
function extractDomain(url) {
return url.split('/')[url.indexOf('://') > -1 ? 2 : 0].split(':')[0];
}
Quick and handy function to Extract Domain from a given URL.
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.