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
Just a simple example showing the speed difference between populating a list with .append() & .html() and innerHTML
<script src="//code.jquery.com/jquery-1.9.1.min.js">
</script>
<select id="list" ></select>
<select id="list1" ></select>
<select id="list2" ></select>
<select id="list3" ></select>
<select id="list4" ></select>
var len = 5000;
var html=[];
for (var i = 0; i < len; i++) {
html.push('<option value="'+ i +'">Test' + i + '</option>');
}
var htmlArrayObjects =[];
for (var i = 0; i < len; i++) {
html.push({label:'Test' + i,value:i}
);
}
var htmlOption = '';
for (var a = 0; a < len; a++) {
htmlOption = htmlOption + '<option value="'+ a +'">Test' + a + '</option>';
}
Ready to run.
Test | Ops/sec | |
---|---|---|
jquery .append() |
| ready |
jQuery .html() |
| ready |
javascript innerHTML |
| ready |
Concat |
| ready |
Manually new Options |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.