Skip to content

Instantly share code, notes, and snippets.

@Steven24K
Created March 15, 2023 09:21
Show Gist options
  • Save Steven24K/9243479ac5283da272d3e5da2f62541f to your computer and use it in GitHub Desktop.
Save Steven24K/9243479ac5283da272d3e5da2f62541f to your computer and use it in GitHub Desktop.
function getUrlParam(key: string): string {
const urlParams = new URLSearchParams(window.location.search);
return urlParams.get(key) ?? "";
}
function addUrlParam(key: string, value: string): void {
const url = new URL(window.location.href);
url.searchParams.set(key, value);
const newUrl = url.href;
window.history.pushState({ path: newUrl }, "", newUrl);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment