var query = 'test=1&test=2&alt=test&b=8&c=9&alt=9';
var result = Object.fromEntries(new URLSearchParams(query));
var result = query.split('&')
.map(p => p.split('='))
.reduce((obj, pair) => {
const [key, value] = pair.map(decodeURIComponent);
obj[key] = value;
return obj;
}, {});
var result = JSON.parse('{"' + decodeURI(query).replace(/"/g, '\\"').replace(/&/g, '","').replace(/=/g,'":"') + '"}')
var result = JSON.parse('{"' + query.replace(/&/g, '","').replace(/=/g,'":"') + '"}', function(key, value) { return key===""?value:decodeURIComponent(value) })
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Object.entries with URLSearchParams | |
map reduce | |
json parse decodeURI | |
json parse decodeURIComponent |
Test name | Executions per second |
---|---|
Object.entries with URLSearchParams | 481354.2 Ops/sec |
map reduce | 1289953.6 Ops/sec |
json parse decodeURI | 1187845.0 Ops/sec |
json parse decodeURIComponent | 640233.2 Ops/sec |
Benchmark Explanation
The provided JSON represents a JavaScript microbenchmark test case on MeasureThat.net, which compares the performance of different approaches for parsing URL query strings into JavaScript objects.
Test Cases
There are four test cases:
URLSearchParams
API to parse the URL query string and then converts it to a JavaScript object using Object.entries
.decodeURI
to decode the URL query string and then parses it as JSON using JSON.parse
.decodeURI
to decode the URL query string, but wraps the parsing logic in a custom function that decodes the value of each key-value pair.Options Compared
The test case compares the performance of these four approaches:
URLSearchParams
) vs. manual implementationdecodeURI
vs. using a custom decoding functionPros and Cons
Here's a brief summary of the pros and cons of each approach:
Library and Custom Function
The URLSearchParams
API is a built-in library in modern JavaScript browsers that provides an easy way to parse URL query strings into JavaScript objects. The custom function used in the JSON Parse with decodeURIComponent approach (function(key, value) { return key===\"\"?value:decodeURIComponent(value) }
) decodes the value of each key-value pair using decodeURIComponent
.
Special JS Features
There are no special JS features or syntax mentioned in the benchmark. However, it's worth noting that the use of URLSearchParams
and JSON parsing assumes modern browsers with support for these APIs.
Alternatives
Other alternatives to the approaches tested in this benchmark include: