function realativeToAbs(href) { let aEl = document.createElement("a"); aEl.href = href; const result = aEl.href; aEl = null; return result; } console.log("realativeToAbs", realativeToAbs("../a/b/b/index.html"));