How to change the URL of a webpage without reloading using Javascript?
Originally Published Here ๐!
To change the URL of the webpage without reloading, you can use the replaceState() method in the global window.history object in JavaScript.
/* Change URL without reloading webpage ๐*/
window.history.replaceState({}, ""...
melvingeorge-me.hashnode.dev2 min read