Skip to content

Instantly share code, notes, and snippets.

@vladzadvorny
Last active February 21, 2017 12:24
Show Gist options
  • Save vladzadvorny/9b0ef40f94b03bc3cd561f2af092851a to your computer and use it in GitHub Desktop.
Save vladzadvorny/9b0ef40f94b03bc3cd561f2af092851a to your computer and use it in GitHub Desktop.
var paramsUrl = {
'one': 'hello',
'two': 'world'
};
function httpBuildQuery(_paramsUrl) {
var arr = [];
for (var key in _paramsUrl) {
arr.push(key + '=' + _paramsUrl[key]);
}
return arr.join('&');
}
console.log(httpBuildQuery(paramsUrl));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment