cara mengubah parameter kueri URL di JavaScript
// Construct URLSearchParams object instance from current URL querystring.
var queryParams = new URLSearchParams(window.location.search);
// Set new or modify existing parameter value.
queryParams.set("myParam", "myValue");
// Replace current querystring with the new one.
history.replaceState(null, null, "?"+queryParams.toString());
// OR do a push to history
tory.pushState(null, null, "?"+queryParams.toString());
Cute Chinchilla