Skip to content

Instantly share code, notes, and snippets.

@rudyhuynh
Last active January 31, 2020 03:38
Show Gist options
  • Save rudyhuynh/b7cbba3c61b3deaeade893273d380b28 to your computer and use it in GitHub Desktop.
Save rudyhuynh/b7cbba3c61b3deaeade893273d380b28 to your computer and use it in GitHub Desktop.
Parse URL Query String to JSON
[...new URLSearchParams(location.search)].reduce((acc, [key, value]) => ({...acc, [key]: value}), {})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment