Left zero filling

Benchmark created by Tim Wood on


Preparation HTML

<script>
  function whileLoop(number, targetLength) {
   var output = number + '';
   while (output.length < targetLength) {
    output = '0' + output;
   }
   return output;
  };
  
  function arrayJoin(number, targetLength) {
   if ((number = number + "").length < targetLength) {
    return new Array((++targetLength) - number.length).join("0") + number;
   } else {
    return number;
   }
  }
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
while loop 1e5
whileLoop(Math.random() * 1e5 | 0)
ready
Array.join 1e5
arrayJoin(Math.random() * 1e5 | 0)
ready
while loop 1e20
whileLoop(Math.random() * 1e20 | 0)
ready
Array.join 1e20
arrayJoin(Math.random() * 1e20 | 0)
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.