Skip to content

Instantly share code, notes, and snippets.

@wholypantalones
Created February 1, 2018 14:55
Show Gist options
  • Save wholypantalones/377a89e38af0163d6a7d49a7ddba4e91 to your computer and use it in GitHub Desktop.
Save wholypantalones/377a89e38af0163d6a7d49a7ddba4e91 to your computer and use it in GitHub Desktop.
Convert object to params
/* params = {paramOne: '1', paramTwo: '2'} */
var str = Object.keys(params).map(function(key) {
return key + '=' + encodeURIComponent(params[key]);
}).join('&');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment