javascript-golf challenge: expose the content of heydonworks.com from the browser console using only javascript.
fetch("https://heydonworks.com").then(x => x.text()).then(x => {
var f = document.createElement("iframe");
document.body.append(f);
f.style.left = "0px";
f.style.top = "0px";
f.style.width = "100%";
f.style.height = "100%";
f.style.position = "absolute";
f.style.border = 0;
x = x.replace(/\/gi, "");
x = x.replace(/\.*\/gi, "");
f.contentDocument.write(x);
});