Skip to content

Instantly share code, notes, and snippets.

@oliverll1
Created June 11, 2020 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oliverll1/183466cf40d4d19a03dd86d222710178 to your computer and use it in GitHub Desktop.
Save oliverll1/183466cf40d4d19a03dd86d222710178 to your computer and use it in GitHub Desktop.
Get url params Javascript
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const param = urlParams.get('param');
console.log(param );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment