jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
getParameterByName3 would bork if other variables on the query string ended in the same text as the name of the one to return, as pointed out by a comment on SO.
<script>
var location_search = "?q=hol+nse+qu+cirde&nose=%34sdnf%2f&43&l=1"
, testDebug = []
;
(function () {
var location = {};
location.search = location_search;
window.GetQueryString = function (q) {
return (function (a) {
if (a == "") return {};
var b = {};
for (var i = 0; i < a.length; ++i) {
var p = a[i].split('=');
if (p.length != 2) continue;
b[p[0]] = decodeURIComponent(p[1].replace(/\+/g, " "));
}
return b;
})(q.split("&"));
};
window.getParameterByName = function (name) {
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
window.getParameterByName2 = function (name) {
var match = RegExp('[?&]' + name + '=([^&]*)').exec(location.search);
return match && decodeURIComponent(match[1].replace(/\+/g, ' '));
}
window.getParameterByName3 = function (n) {
var half = location.search.split(n + '=')[1];
return half ? decodeURIComponent(half.split('&')[0].replace(/\+/g, ' ')) : null;
}
window.test_debug = function() {
if(typeof(window.debug)==='undefined') return;
var t = arguments[0];
if(typeof(window.debug[t])==='undefined'){
console.log.apply(console, Array.prototype.slice.call(arguments, 0));
window.debug[t] = true;
}
}
})();
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
Split method |
| ready |
Regex method |
| ready |
Another.... |
| ready |
simplest and faster but inaccurate! |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.