Creates a querystring from the specified data and returns it
// '?a=1'toQueryString({a: 1});
// '?a[]=1&a[]=2'toQueryString({a: [1, 2]}, {arraySyntax: true});
additional options
Creates a querystring from the specified data and returns it