Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save moriarty99779/e38e0e9c07609f655f3636c0d9a6a340 to your computer and use it in GitHub Desktop.
Save moriarty99779/e38e0e9c07609f655f3636c0d9a6a340 to your computer and use it in GitHub Desktop.
Javascript - Convert object key value pairs to URL parameters
const objectToURLParams = (obj) => Object.entries(obj).map(([key, value]) => `${encodeURIComponent(key)}=${encodeURIComponent(value)}`).join('&');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment