Skip to content

Instantly share code, notes, and snippets.

@iceener
Last active July 1, 2020 07:08
Show Gist options
  • Save iceener/e661f6384ea573bd335f0aa0ba8f7c28 to your computer and use it in GitHub Desktop.
Save iceener/e661f6384ea573bd335f0aa0ba8f7c28 to your computer and use it in GitHub Desktop.
// Object to Query String
const obj = { foo: 'bar', baz: 'qux' }
const queryString = new URLSearchParams(obj).toString()
// foo=bar&baz=qux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment