I have the following string:
var myString = 'param1=value1¶m2=value2¶m3=value3';
and want to transform it into this:
var new = {
'param1': 'value1',
'param2': 'value2',
'param3': 'value3'
}
What is the shortest way to do it? Thanks