window.location="abc.html";
window.location.href = "abc.html";
window.location.assign("abc.html");
window.location.replace("abc.html");
<a href="abc.html">link</a>
I know these techniques in JS to redirect page to another but are there any other methods ? ? ?
help me with it .