JSFiddle - React, Tailwind, and code Playground

by dmitri_pavlutin

JavaScript

const url = new URL('http://red.com/path/index.html');

console.log(url.href); // => 'http://red.com/path/index.html'

url.hostname = 'blue.io';

console.log(url.href); // => 'http://blue.io/path/index.html'