Mettre à jour les paramètres URL et créer une entrée d'historique

// 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 create new history entry with push state
history.pushState(null,null, `?${queryParams.toString()}`);
Dizzy Dog