Do you know a fast and simple way to encode a Javascript Object into a string that I can pass via a GET Request?
string
GET
No jQuery, no
jQuery
Single line to convert Object into Query String in case somebody need it again
let Objs = { a: 'obejct-a', b: 'object-b' } Object.keys(objs).map(key => key + '=' + objs[key]).join('&') // result will be a=object-a&b=object-b