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
There are three methods to assess a texts width:
See: http://bl.ocks.org/MSCAU/58bba77cdcae42fc2f44
NOTE: The three methods do not give the exact same length. See https://jsbin.com/tudusixeha/edit?html,js,console,output
<svg>
<text id="test">Hello world</text>
</svg>
var width;
var text = document.getElementById("test");
Ready to run.
Test | Ops/sec | |
---|---|---|
getBoundingClientRect |
| ready |
getBBox |
| ready |
getComputedTextLength |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.