Skip to content

Instantly share code, notes, and snippets.

@cyberdev
Created May 6, 2021 08:02
Show Gist options
  • Save cyberdev/d817fd30baa7f28afd897fb9419834d2 to your computer and use it in GitHub Desktop.
Save cyberdev/d817fd30baa7f28afd897fb9419834d2 to your computer and use it in GitHub Desktop.
Get url parameter value
function getParam(param){
return new URLSearchParams(window.location.search).get(param);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment